漫漫长路,其修远兮!
发布时间:2014-04-01 18:04:32
1.格式化为字符串%s >>> format = "Hello, %s. %s enough for ya?">>> values = ('world', 'Hot')>>> print format % valuesHello, world. Hot enough for ya?2.格式化为实数%f>>> format = "Pi with three decimals: %.3f"//保留小数点后3个有效数字>>> from math import pi//导入pi的值>>> print format % .........【阅读全文】
发布时间:2014-03-31 16:50:37
SHOW PROCESSLIST显示哪些线程正在运行。您也可以使用mysqladmin processlist语句得到此信息。如果您有SUPER权限,您可以看到所有线程。否则,您只能看到您自己的线程(也就是,与您正在使用的MySQL账户相关的线程)。请参见13.5.5.3节,“KILL语法”。如果您不使用FULL关键词,则只显示每个查询的前100个字符。本语.........【阅读全文】
发布时间:2014-03-31 15:46:04
1.安装方式sudo easy_install Torndb2.连接数据库点击(此处)折叠或打开db=torndb.Connection(host+":"+str(port),db,user=user,password=pwd)cre_sql="create table blog(id int,content text)"db.execute(cre_sql)string='wa.........【阅读全文】