mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-10-21 02:17:18 +02:00
Port legacy MySQL implementation.
This commit is contained in:
@@ -44,6 +44,9 @@ extern void Register_ZMQ(HSQUIRRELVM vm);
|
||||
#ifdef SQMOD_POCO_HAS_SQLITE
|
||||
extern void Register_SQLite(HSQUIRRELVM vm);
|
||||
#endif
|
||||
#ifdef SQMOD_POCO_HAS_MYSQL
|
||||
extern void Register_MySQL(HSQUIRRELVM vm);
|
||||
#endif
|
||||
|
||||
// ------------------------------------------------------------------------------------------------
|
||||
extern void Register_POCO(HSQUIRRELVM vm);
|
||||
@@ -104,6 +107,9 @@ bool RegisterAPI(HSQUIRRELVM vm)
|
||||
#ifdef SQMOD_POCO_HAS_SQLITE
|
||||
Register_SQLite(vm);
|
||||
#endif
|
||||
#ifdef SQMOD_POCO_HAS_MYSQL
|
||||
Register_MySQL(vm);
|
||||
#endif
|
||||
|
||||
Register_POCO(vm);
|
||||
|
||||
|
Reference in New Issue
Block a user