Can I use C API function of Sqlite in our Code
Publicado: Sab Oct 17, 2015 10:42 am
Can I use C API function of Sqlite in our code like sqlite3_finalize() ?
TIA
Milan.
TIA
Milan.
El entorno de desarrollo definitivo en Xbase
https://forum.xailer.com/
Código: Seleccionar todo
XA_FUNC( XSQLITEDATASOURCE_FINALIZE )
{
sqlite3_stmt *hQuery = (LPVOID) hb_parnl( 1 );
if( hQuery )
hb_retnl( sqlite3_finalize( hQuery ) );
else
hb_retnl( 0 );
}