(No version information available, might only be in Git)
  
   Introduction
   
    A class that handles prepared statements for the SQLite 3 extension.
   
   
  
   Class synopsis
   
    
    
     
      SQLite3Stmt
     
     {
    
    
    
   public bool bindParam
    ( 
string $sql_param
   , 
mixed &$param
   [, 
int $type
  ] )
 
   public bool bindValue
    ( 
string $sql_param
   , 
mixed $value
   [, 
int $type
  ] )
 
   public bool clear
    ( 
void
   )
 
   public bool close
    ( 
void
   )
 
   public SQLite3Result execute
    ( 
void
   )
 
   public bool reset
    ( 
void
   )
 
   }