1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
/*
* OpenDBX - A simple but extensible database abstraction layer
* Copyright (C) 2005-2007 Norbert Sendetzky and others
*
* Distributed under the terms of the GNU Library General Public Licence
* version 2 or (at your option) any later version.
*/
#include "sqlite3backend.h"
/*
* Declaration of SQLite3 capabilities
*/
extern struct odbx_basic_ops sqlite3_odbx_basic_ops;
struct odbx_ops sqlite3_odbx_ops = {
.basic = &sqlite3_odbx_basic_ops,
.lo = NULL,
};
#ifndef ODBX_SINGLELIB
void odbxdrv_register( struct odbx_ops** ops )
{
*ops = &sqlite3_odbx_ops;
}
#endif
|