启动MySQL后,几秒钟后直接报错了然后在事件查看器中发现了几条错误信息Can't start server: Bind on TCP/IP port: No such file or directoryDo you already have another mysqld server runnin...
分类:
数据库 时间:
2014-09-24 01:55:45
阅读次数:
365
这两个函数是差不多的,但由于优化方案不同,通常NOT Exists要比NOT IN要快,因为NOT EXISTS可以使用结合算法二NOT IN就不行了,而EXISTS则不如IN快,因为这时候IN可能更多的使用结合算法。 Select * from tableA Where exists(Select...
分类:
其他好文 时间:
2014-09-23 18:56:55
阅读次数:
168
今天介绍下joomla下文件操作常用方法,这些方法在文件读写,图片文件上传,等都有用处。jimport('joomla.filesystem.file');$j = new JFile();getExt($file) //获取扩展名不含.getName($file) //获得文件名exists($f...
分类:
其他好文 时间:
2014-09-22 18:04:32
阅读次数:
205
1.安装与配置 Setup oh-my-zshshould work with any recent release of Zsh. The minimum recommended version is 4.3.9. If not already installed, you can install Zsh using the command-line. The automatic...
分类:
其他好文 时间:
2014-09-22 16:22:53
阅读次数:
301
package com.jfinal.kit; import java.io.File; public class FileKit { public static void delete(File file) { if ((file != null) && (file.exists())) { if (file.isFile()) { file.delete(); } else if (fi...
分类:
编程语言 时间:
2014-09-22 00:47:31
阅读次数:
227
检查文件file_exists($file);检查文件夹is_dir($dir);输出md5md5($file;输出字符串到文件,如果文件不存在自动则自动创建file_put_contents($file, $outputContent);从文件读内容file_get_contents($file)...
分类:
Web程序 时间:
2014-09-22 00:18:01
阅读次数:
257
一、安装1、# apt-get install wine安装完后在终端里运行wine:# wine会弹出一个对话框:This is the wine64-bin helper package, which does not provide wine itself,but instead exists...
function substr_text($str, $start=0, $length, $charset="utf-8", $suffix=""){ if(function_exists("mb_substr")){//mb_substr函数不是php内置函数,需要加载php.mbstring....
分类:
其他好文 时间:
2014-09-21 20:52:31
阅读次数:
217
跟 column相关的常见的方法有:column_exists? (table_name, column_name, type = nil, options = {})add_column (table_name, column_name, type, options = {})remove_co....
分类:
其他好文 时间:
2014-09-21 18:38:31
阅读次数:
271
String separator = File.separator;String filename = "myfile.txt";String dir = "mydir1"+separator+"mydir2";File f = new File(dir,filename);if(f.exists....
分类:
其他好文 时间:
2014-09-20 18:22:29
阅读次数:
157