MYSQL 帮助:A.2.3 Client does not support authentication protocol MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. If you upgrade the server to 4.1, attempts to connect to it with an older client may fail with the following message: shell mysqlClient does not support authentication pr...[ 查看全文 ]
解决方法是修改/etc/mysql/my.cnf,添加以下一行: set-variable = max_connections=500 或在启动命令中加上参数 max_connections=500 就是修改最大连接数,然后重启mysql.默认的连接数是100,太少了,所以容易出现如题错误. 以下是mysql.com网站的相关说明: If you get a Too many connections error when you try to connect to the mysqld server, this means that all available connections are in use ...[ 查看全文 ]
代码如下: public class equalsDemo { public static void main(String[] args){ /*使用==来判断两个变量是否相等时,如果两个变量时基本数据类型的 变量时,且都是数值类型是,则只要两个变量的值相等,使用==判断就返回true*/  ...[ 查看全文 ]
在网上找到一个用ASP开的假线程,发现和我以前做的一个程序不谋而合,只不过以前用的是VB,摘下来,储备. 1.原理实验 原理当然都一样,利用web服务器支持多线程,在同一页面里向服务器发多个http请求来完成我们的工作。还是先实验一下,在一个页面里同时写2个txt文件,比较写入时间的差异。代码如下: % startime=timer() ''----------asp实现多线程----------'' function runThread() dim Http set Http=Serve...[ 查看全文 ]
A common UI is to have a table of data rows, which when clicked on expand to show a detailed breakdown of "child" rows below the "parent" row. The only requirements are: Put a class of "parent" ...[ 查看全文 ]
// blueDestiny, never-online // blueDestiny [at] 126.com 通常,我们在动态给定一个container的innerHTML时,通常是样做的: div id="divc" / SCRIPT LANGUAGE="JavaScript" var div = document.getElementById("divc"); var html = "" html += "" + "h1" + "a href='javascript:;' o...[ 查看全文 ]
右击 Windows 桌面上的我的电脑 图标,并从弹出菜单选择属性系统属性窗口出现。 单击设备管理标签。 双击CDROM驱动器,查看硬盘驱动器列表。 右击 IDE DISK (可能会有其他名称,例如 GENERIC IDE DISK)并从弹出菜单选择属性 该硬盘属性窗口出现。 单击设置标签。 选择DMA如果该项未选,然后单击确认。 Windows 问您是否要重新启动,单击是。 在 Windows 2000 启用内存直接存取 作为管理员(或具管理员...[ 查看全文 ]