--- parser3/src/sql/pa_sql_driver.h 2003/03/11 14:58:33 1.34.2.4 +++ parser3/src/sql/pa_sql_driver.h 2003/03/20 08:11:15 1.34.2.4.2.1 @@ -26,7 +26,7 @@ #ifndef PA_SQL_DRIVER_H #define PA_SQL_DRIVER_H -static const char* IDENT_SQL_DRIVER_H="$Date: 2003/03/11 14:58:33 $"; +static const char* IDENT_SQL_DRIVER_H="$Date: 2003/03/20 08:11:15 $"; #include @@ -132,10 +132,14 @@ public: /// @returns true to indicate that connection still alive virtual bool ping( SQL_Driver_services& services, void *connection) =0; + struct Quote_result { + char *s; + size_t size; + }; /// encodes the string in 'from' to an escaped SQL string - virtual unsigned int quote( + virtual Quote_result quote( SQL_Driver_services& services, void *connection, - char *to, const char* from, unsigned int length) =0; + const char* from, unsigned int length) =0; virtual void query( SQL_Driver_services& services, void *connection, const char* statement, unsigned long offset, unsigned long limit,