摘要: sqlite 官方网站: http://www.sqlite.org/ php 官方网站文档: http://cn.php.net/manual/zh/book.sqlite3.php php 操作sqlite3 文本数据库的类为: SQLite3 1. 声明一个sqlite3 文本数据库对像 $db = new SQLite3('mysqlitedb.db'); 2. 执行一个对文本数据库的查询 SQLite3::query() $re = $db->query('select name from table'); while ($row = $re-& 阅读全文
posted @ 2013-06-07 17:27 simadi 阅读(2683) 评论(0) 推荐(0) 编辑
摘要: php中操作sqlite3数据库的类文件。一般用法:$filepath="/apps/www/htdocs/databasename";$db=new SPSQLite3($filepath); //打开此路径数据库文件$sql="select * from tablename"; //查询记录$sql2="delete from tablename"; //删除表内所有记录$db->exec_sql($sql); //执行查询语句$db->struct_sql($sql2); //执行删除$result=$db-> 阅读全文
posted @ 2013-06-07 17:08 simadi 阅读(980) 评论(0) 推荐(0) 编辑
摘要: 删除注册表键HKEY_LOCAL_MACHINE\SOFTWARE\Licenses, 然后打开Procmon,再启动vs2010,就可以使用了。vs.php 下载地址http://www.jcxsoftware.com/download.php 阅读全文
posted @ 2013-06-07 12:58 simadi 阅读(438) 评论(0) 推荐(0) 编辑