statement = $this->query($sql); } // -------------------------------------------------------------------------- /** * Bind a prepared query with arguments for executing * * @param string $sql * @param array $params * @return NULL */ public function prepare_query($sql, $params) { // You can't bind query statements before execution with // the firebird database return NULL; } // -------------------------------------------------------------------------- /** * Create sql for batch insert * * @param string $table * @param array $data * @return string */ public function insert_batch($table, $data=array()) { // This is not very applicable to the firebird database return NULL; } } // End of firebird_driver.php