This functionallity is not (yet) implemented and therefore gives a bogus error while using PDO
return row_count;
}
+/* TODO: Do ODBC quoter
static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, size_t unquotedlen, char **quoted, size_t *quotedlen, enum pdo_param_type param_type )
{
- /* pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; */
- /* TODO: figure it out */
+ // pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data;
+ // TODO: figure it out
return 0;
}
+*/
static int odbc_handle_begin(pdo_dbh_t *dbh)
{
odbc_handle_closer,
odbc_handle_preparer,
odbc_handle_doer,
- odbc_handle_quoter,
+ NULL, /* quoter */
odbc_handle_begin,
odbc_handle_commit,
odbc_handle_rollback,