PDO的数据获取方法与其他数据库扩展都非常类似,只要成功执行SELECT查询,都会有结果集对象产生。不管是使用PDO对象中的query()方法,还是使用prepare()和execute()等方法结合的预处理语句,执行SELECT查询都会得到相同的结果集对象PDOStatement。都需要通过PDO...
分类:
其他好文 时间:
2015-06-22 07:35:00
阅读次数:
285
新版本的pdo会有这个问题:General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternati...
分类:
其他好文 时间:
2015-01-16 14:26:08
阅读次数:
233
代码片段: sql_url = "select * from webpage where url = '%s'" % b try: cursor.execute(sql_url) results = cursor.fetchall() ...
分类:
数据库 时间:
2015-01-08 21:32:52
阅读次数:
245
新版本的pdo会有这个问题:General error: 2014 Cannot execute queries while other unbuffered queries are active. Consider using PDOStatement::fetchAll(). Alternati...
分类:
Web程序 时间:
2014-12-19 12:55:05
阅读次数:
199
#!/usr/bin/pythonimportMySQLdbimportpycurldefmaster_work(ip,port):printip,portconn=MySQLdb.connect(host=str(ip),user=‘***‘,passwd=‘****‘,port=int(port))cur=conn.cursor(cursorclass=MySQLdb.cursors.DictCursor)cur.execute(‘showstatus;‘)result=cur.fetchall()#co..
分类:
数据库 时间:
2014-12-12 17:06:30
阅读次数:
241
简单的通过.net K-V形式操作Cache:public enum CacheKey { LanguageQueryProcess_FetchAll, ProjectQueryProcess_FetchAll } public class System...
分类:
系统相关 时间:
2014-11-05 12:14:50
阅读次数:
284
prepare("show tables;");//准备预处理sql语句 $obj->execute();//执行预处理语句 $obj->fetchALL(PDO::FETCH_ASSOC);//获取结果集 #.插入 $obj = null; $sql = ...
分类:
数据库 时间:
2014-06-25 09:23:42
阅读次数:
244