1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-19 16:47:14 +02:00

Remove the SQLite methods that could be used to copy the database to and from memory because it they could crash easilly and didn't make much sense.

This commit is contained in:
Sandu Liviu Catalin
2016-03-23 08:24:14 +02:00
parent 41f5cfe663
commit 9657905586
3 changed files with 0 additions and 171 deletions

View File

@ -212,8 +212,6 @@ void RegisterAPI(HSQUIRRELVM vm)
.Func(_SC("TableExists"), &Connection::TableExists)
.Func(_SC("InterruptOperation"), &Connection::InterruptOperation)
.Func(_SC("ReleaseMemory"), &Connection::ReleaseMemory)
.Func(_SC("CopyToMemory"), &Connection::CopyToMemory)
.Func(_SC("CopyToDatabase"), &Connection::CopyToDatabase)
.Overload< Int32 (Connection::*)(Int32) >(_SC("GetInfo"), &Connection::GetInfo)
.Overload< Int32 (Connection::*)(Int32, bool) >(_SC("GetInfo"), &Connection::GetInfo)
.Overload< Int32 (Connection::*)(Int32, bool, bool) >(_SC("GetInfo"), &Connection::GetInfo)