/**
* SQLite クラス
* 2009-5-6
* Lian Wanchun
*
*/
class SQLite {
$_mResult = null ;
// SQLite 接続ハンドル
protected $_mSqlite;
// 警告メッセージ
protected $_mSqlite = new PDO(' sqlite: '。$ false; >fetchAll();
}
/ **
* データベース接続構築クラス
*
* @param string $databaseFile データベースファイル
* @return 不明
*/
public function query($sql){
if (empty($sql) ) {
$this->_mErrorInfo="SQL ステートメントerror";
return false;
}
//$ this->_mSqlite->exec($sql)or die(print_r($this->_mSqlite->errorInfo()));
$this - >_mSqlite->exec($sql);
return true; }
/**
* データベースには結果を返すステートメント操作があります
*/
return $this->_mErrorInfo;
?> ;
http://www.bkjia.com/PHPjc/320137.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/320137.html技術記事次のようにコードをコピーします。 ? /*** SQLite クラス * 2009-5-6 * Lian Wanchun **/ class SQLite { // 現在の SQL 命令 public $_mQueryStr = '' // 現在の結果 public $_mResult = null;