| The SQLite3Stmt classIntroductionA class that handles prepared statements for the SQLite 3 extension. Class synopsis
     SQLite3Stmt
     /* Methods */ 
   private  __construct(SQLite3  $sqlite3, string$query)public bool bindParam(stringint  $param, mixed&$var, int$type=SQLITE3_TEXT)public bool bindValue(stringint  $param, mixed$value, int$type=SQLITE3_TEXT)public bool clear() public true close() public SQLite3Resultfalse execute() public stringfalse getSQL(bool  $expand=false)public int paramCount() public bool readOnly() public bool reset() 
 |