--- parser3/src/sql/pa_sql_driver.h 2003/02/17 17:05:03 1.34.2.3 +++ parser3/src/sql/pa_sql_driver.h 2003/03/11 14:58:33 1.34.2.4 @@ -26,7 +26,7 @@ #ifndef PA_SQL_DRIVER_H #define PA_SQL_DRIVER_H -static const char* IDENT_SQL_DRIVER_H="$Date: 2003/02/17 17:05:03 $"; +static const char* IDENT_SQL_DRIVER_H="$Date: 2003/03/11 14:58:33 $"; #include @@ -101,6 +101,16 @@ public: class SQL_Driver { public: + /** allocated using our allocator, + @todo never freed + */ + static void *operator new(size_t size) { + void *result=::malloc(size); + if(!result) + abort(); + + return result; + } /// get api version virtual int api_version() =0; /// initialize driver by loading sql dynamic link library