2016-02-27 10:57:29 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#include "Connection.hpp"
|
|
|
|
#include "Statement.hpp"
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
namespace SqMod {
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SQInteger Connection::Typename(HSQUIRRELVM vm)
|
|
|
|
{
|
2016-05-22 21:34:27 +02:00
|
|
|
static const SQChar name[] = _SC("SqSQLiteConnection");
|
2016-02-27 10:57:29 +01:00
|
|
|
sq_pushstring(vm, name, sizeof(name));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::TraceOutput(void * /*ptr*/, CCStr sql)
|
|
|
|
{
|
2016-07-04 15:26:39 +02:00
|
|
|
SqMod_LogInf("SQLite Trace: %s", sql);
|
2016-06-15 22:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Connection::ProfileOutput(void * /*ptr*/, CCStr sql, sqlite3_uint64 time)
|
|
|
|
{
|
2016-07-04 15:26:39 +02:00
|
|
|
SqMod_LogInf("SQLite profile (time: %llu): %s", time, sql);
|
2016-06-15 22:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
|
|
void Connection::Validate(CCStr file, Int32 line) const
|
|
|
|
{
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection reference =>[%s:%d]", file, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void Connection::Validate() const
|
|
|
|
{
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection reference");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // _DEBUG
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
|
|
void Connection::ValidateOpened(CCStr file, Int32 line) const
|
|
|
|
{
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection reference =>[%s:%d]", file, line);
|
|
|
|
}
|
|
|
|
else if (m_Handle->mPtr == nullptr)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection =>[%s:%d]", file, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
void Connection::ValidateOpened() const
|
|
|
|
{
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection reference");
|
|
|
|
}
|
|
|
|
else if (m_Handle->mPtr == nullptr)
|
|
|
|
{
|
|
|
|
SqThrowF("Invalid SQLite connection");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // _DEBUG
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
|
|
const ConnRef & Connection::GetValid(CCStr file, Int32 line) const
|
|
|
|
{
|
|
|
|
Validate(file, line);
|
|
|
|
return m_Handle;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
const ConnRef & Connection::GetValid() const
|
|
|
|
{
|
|
|
|
Validate();
|
|
|
|
return m_Handle;
|
|
|
|
}
|
|
|
|
#endif // _DEBUG
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
#if defined(_DEBUG) || defined(SQMOD_EXCEPTLOC)
|
|
|
|
const ConnRef & Connection::GetOpened(CCStr file, Int32 line) const
|
|
|
|
{
|
|
|
|
ValidateOpened(file, line);
|
|
|
|
return m_Handle;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
const ConnRef & Connection::GetOpened() const
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
ValidateOpened();
|
|
|
|
return m_Handle;
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
#endif // _DEBUG
|
2016-02-27 10:57:29 +01:00
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::Open(CSStr name)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-17 06:21:04 +02:00
|
|
|
// Should we create a connection handle?
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
m_Handle = ConnRef(new ConnHnd());
|
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Make sure another database isn't opened
|
|
|
|
if (GET_VALID_HND(*this)->mPtr != nullptr)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Already referencing a valid database connection");
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Perform the requested operation
|
|
|
|
m_Handle->Create(name, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, nullptr);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::Open(CSStr name, Int32 flags)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-17 06:21:04 +02:00
|
|
|
// Should we create a connection handle?
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
m_Handle = ConnRef(new ConnHnd());
|
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Make sure another database isn't opened
|
|
|
|
if (GET_VALID_HND(*this)->mPtr != nullptr)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Already referencing a valid database connection");
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Perform the requested operation
|
|
|
|
m_Handle->Create(name, flags, nullptr);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::Open(CSStr name, Int32 flags, CSStr vfs)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-17 06:21:04 +02:00
|
|
|
// Should we create a connection handle?
|
|
|
|
if (!m_Handle)
|
|
|
|
{
|
|
|
|
m_Handle = ConnRef(new ConnHnd());
|
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Make sure another database isn't opened
|
|
|
|
if (GET_VALID_HND(*this)->mPtr != nullptr)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Already referencing a valid database connection");
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-06-15 22:49:25 +02:00
|
|
|
// Perform the requested operation
|
|
|
|
m_Handle->Create(name, flags, vfs);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Int32 Connection::Exec(CSStr str)
|
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
2016-02-27 16:53:12 +01:00
|
|
|
// Attempt to execute the specified query
|
2016-06-15 22:49:25 +02:00
|
|
|
m_Handle->mStatus = sqlite3_exec(m_Handle->mPtr, str, nullptr, nullptr, nullptr);
|
|
|
|
// Validate the execution result
|
|
|
|
if (m_Handle->mStatus != SQLITE_OK)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Unable to execute query [%s]", m_Handle->ErrMsg());
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
// Return rows affected by this query
|
2016-06-15 22:49:25 +02:00
|
|
|
return sqlite3_changes(m_Handle->mPtr);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-02-27 12:51:14 +01:00
|
|
|
Object Connection::Query(CSStr str) const
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
2016-02-27 16:53:12 +01:00
|
|
|
// Return the requested information
|
|
|
|
return Object(new Statement(m_Handle, str));
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Connection::Queue(CSStr str)
|
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_HND(*this);
|
2016-02-27 10:57:29 +01:00
|
|
|
// Is there a query to commit?
|
2016-02-27 16:53:12 +01:00
|
|
|
if (IsQueryEmpty(str))
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-03-22 23:25:32 +01:00
|
|
|
STHROWF("No query string to queue");
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
// Add the specified string to the queue
|
2016-02-27 16:53:12 +01:00
|
|
|
m_Handle->mQueue.push_back(str);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
bool Connection::IsReadOnly() const
|
|
|
|
{
|
|
|
|
// Request the desired information
|
2016-06-15 22:49:25 +02:00
|
|
|
const int result = sqlite3_db_readonly(GET_OPENED_HND(*this)->mPtr, "main");
|
2016-02-27 10:57:29 +01:00
|
|
|
// Verify the result
|
|
|
|
if (result == -1)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-03-22 23:25:32 +01:00
|
|
|
STHROWF("'main' is not the name of a database on connection");
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 16:53:12 +01:00
|
|
|
// Return the requested information
|
|
|
|
return (result != 1);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
bool Connection::TableExists(CCStr name) const
|
|
|
|
{
|
|
|
|
// Prepare a statement to inspect the master table
|
2016-06-15 22:49:25 +02:00
|
|
|
Statement stmt(GET_OPENED_HND(*this), "SELECT count(*) FROM [sqlite_master] WHERE [type]='table' AND [name]=?");
|
2016-02-27 10:57:29 +01:00
|
|
|
// Could the statement be created?
|
|
|
|
if (stmt.IsValid())
|
|
|
|
{
|
|
|
|
// Bind the specified name onto the statement parameter
|
2016-06-15 22:49:25 +02:00
|
|
|
stmt.IndexBindString(1, name);
|
2016-02-27 10:57:29 +01:00
|
|
|
// Attempt to step the statement and obtain a value
|
|
|
|
if (stmt.Step())
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-02-27 10:57:29 +01:00
|
|
|
return (sqlite3_column_int(stmt, 0) == 1);
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
// Assume it doesn't exist
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::SetTracing(bool toggle)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
// Check whether changes are necessary
|
|
|
|
if (GET_OPENED_HND(*this)->mTrace == toggle)
|
|
|
|
{
|
|
|
|
return; // No point in proceeding
|
|
|
|
}
|
|
|
|
// Do we have to disable it?
|
|
|
|
else if (m_Handle->mTrace)
|
|
|
|
{
|
|
|
|
sqlite3_trace(m_Handle->mPtr, nullptr, nullptr);
|
|
|
|
}
|
|
|
|
// Go ahead and enable tracing
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sqlite3_trace(m_Handle->mPtr, &Connection::TraceOutput, nullptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Connection::SetProfiling(bool toggle)
|
|
|
|
{
|
|
|
|
// Check whether changes are necessary
|
|
|
|
if (GET_OPENED_HND(*this)->mProfile == toggle)
|
|
|
|
{
|
|
|
|
return; // No point in proceeding
|
|
|
|
}
|
|
|
|
// Do we have to disable it?
|
|
|
|
else if (m_Handle->mProfile)
|
|
|
|
{
|
|
|
|
sqlite3_profile(m_Handle->mPtr, nullptr, nullptr);
|
|
|
|
}
|
|
|
|
// Go ahead and enable profiling
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sqlite3_profile(m_Handle->mPtr, &Connection::ProfileOutput, nullptr);
|
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Connection::SetBusyTimeout(Int32 millis)
|
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
|
|
|
// Apply the requested timeout
|
|
|
|
if ((m_Handle->mStatus = sqlite3_busy_timeout(m_Handle->mPtr, millis)) != SQLITE_OK)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Unable to set busy timeout [%s]", m_Handle->ErrMsg());
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Int32 Connection::GetInfo(Int32 operation, bool highwater, bool reset)
|
|
|
|
{
|
|
|
|
// Where to retrieve the information
|
|
|
|
Int32 cur_value;
|
|
|
|
Int32 hiwtr_value;
|
|
|
|
// Attempt to retrieve the specified information
|
2016-06-15 22:49:25 +02:00
|
|
|
if ((m_Handle->mStatus = sqlite3_db_status(GET_OPENED_HND(*this)->mPtr, operation, &cur_value, &hiwtr_value, reset)) != SQLITE_OK)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
STHROWF("Unable to get runtime status information", m_Handle->ErrMsg());
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 16:53:12 +01:00
|
|
|
// Return the high-water value if requested
|
2016-02-27 10:57:29 +01:00
|
|
|
else if (highwater)
|
2016-04-02 11:11:14 +02:00
|
|
|
{
|
2016-02-27 10:57:29 +01:00
|
|
|
return hiwtr_value;
|
2016-04-02 11:11:14 +02:00
|
|
|
}
|
2016-02-27 16:53:12 +01:00
|
|
|
// Return the requested information
|
|
|
|
return cur_value;
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
2016-03-23 04:50:58 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
void Connection::ReserveQueue(Uint32 num)
|
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_HND(*this);
|
2016-03-23 04:50:58 +01:00
|
|
|
// Perform the requested operation
|
|
|
|
m_Handle->mQueue.reserve(m_Handle->mQueue.size() + num);
|
|
|
|
}
|
|
|
|
|
2016-02-27 10:57:29 +01:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
void Connection::PopQueue()
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_HND(*this);
|
|
|
|
// Perform the requested operation
|
|
|
|
if (!GET_VALID_HND(*this)->mQueue.empty())
|
|
|
|
{
|
|
|
|
m_Handle->mQueue.pop_back();
|
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
Int32 Connection::Flush()
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
|
|
|
// Perform the requested operation
|
|
|
|
return m_Handle->Flush(m_Handle->mQueue.size(), NullObject(), NullFunction());
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
2016-06-15 22:49:25 +02:00
|
|
|
Int32 Connection::Flush(SQInteger num)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
|
|
|
// Perform the requested operation
|
|
|
|
return m_Handle->Flush(ConvTo< Uint32 >::From(num), NullObject(), NullFunction());
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
2016-06-15 22:49:25 +02:00
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Int32 Connection::Flush(Object & env, Function & func)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
VALIDATE_OPENED_HND(*this);
|
|
|
|
// Perform the requested operation
|
|
|
|
return m_Handle->Flush(m_Handle->mQueue.size(), env, func);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
Int32 Connection::Flush(SQInteger num, Object & env, Function & func)
|
|
|
|
{
|
|
|
|
VALIDATE_OPENED_HND(*this);
|
|
|
|
// Perform the requested operation
|
|
|
|
return m_Handle->Flush(ConvTo< Uint32 >::From(num), env, func);
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SQInteger Connection::ExecF(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
const Int32 top = sq_gettop(vm);
|
2016-03-11 20:07:55 +01:00
|
|
|
// Was the query value specified?
|
2016-02-27 10:57:29 +01:00
|
|
|
if (top <= 1)
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Missing query value");
|
|
|
|
}
|
|
|
|
// The connection instance
|
|
|
|
Connection * conn = nullptr;
|
|
|
|
// Attempt to extract the argument values
|
|
|
|
try
|
|
|
|
{
|
|
|
|
conn = Var< Connection * >(vm, 1).value;
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
// Propagate the error
|
|
|
|
return sq_throwerror(vm, e.Message().c_str());
|
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
// Do we have a valid connection instance?
|
2016-03-11 20:07:55 +01:00
|
|
|
if (!conn)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-03-11 20:07:55 +01:00
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection instance");
|
|
|
|
}
|
|
|
|
// Do we have a valid connection identifier?
|
2016-04-02 11:11:14 +02:00
|
|
|
else if (!(conn->m_Handle))
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection reference");
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to retrieve the value from the stack as a string
|
|
|
|
StackStrF val(vm, 2);
|
|
|
|
// Have we failed to retrieve the string?
|
|
|
|
if (SQ_FAILED(val.mRes))
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-04-02 11:11:14 +02:00
|
|
|
return val.mRes; // Propagate the error!
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to execute the specified query
|
2016-06-15 22:49:25 +02:00
|
|
|
conn->m_Handle->mStatus = sqlite3_exec(conn->m_Handle->mPtr, val.mPtr, nullptr, nullptr, nullptr);
|
|
|
|
// Validate the result
|
|
|
|
if (conn->m_Handle->mStatus != SQLITE_OK)
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
2016-06-15 22:49:25 +02:00
|
|
|
return sq_throwerror(vm, FmtStr("Unable to execute query [%s]", conn->m_Handle->ErrMsg()));
|
2016-03-11 20:07:55 +01:00
|
|
|
}
|
|
|
|
// Push the number of changes onto the stack
|
2016-06-15 22:49:25 +02:00
|
|
|
sq_pushinteger(vm, sqlite3_changes(conn->m_Handle->mPtr));
|
2016-03-11 20:07:55 +01:00
|
|
|
// This function returned a value
|
2016-02-27 10:57:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SQInteger Connection::QueueF(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
const Int32 top = sq_gettop(vm);
|
2016-03-11 20:07:55 +01:00
|
|
|
// Was the query value specified?
|
2016-02-27 10:57:29 +01:00
|
|
|
if (top <= 1)
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Missing query value");
|
|
|
|
}
|
|
|
|
// The connection instance
|
|
|
|
Connection * conn = nullptr;
|
|
|
|
// Attempt to extract the argument values
|
|
|
|
try
|
|
|
|
{
|
|
|
|
conn = Var< Connection * >(vm, 1).value;
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
// Propagate the error
|
|
|
|
return sq_throwerror(vm, e.Message().c_str());
|
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
// Do we have a valid connection instance?
|
2016-03-11 20:07:55 +01:00
|
|
|
if (!conn)
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-03-11 20:07:55 +01:00
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection instance");
|
|
|
|
}
|
|
|
|
// Do we have a valid connection identifier?
|
2016-04-02 11:11:14 +02:00
|
|
|
else if (!(conn->m_Handle))
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection reference");
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to retrieve the value from the stack as a string
|
|
|
|
StackStrF val(vm, 2);
|
|
|
|
// Have we failed to retrieve the string?
|
|
|
|
if (SQ_FAILED(val.mRes))
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
2016-04-02 11:11:14 +02:00
|
|
|
return val.mRes; // Propagate the error!
|
2016-03-11 20:07:55 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to queue the specified query
|
2016-06-15 22:49:25 +02:00
|
|
|
conn->m_Handle->mQueue.emplace_back(val.mPtr, val.mLen);
|
2016-02-27 10:57:29 +01:00
|
|
|
// This function does not return a value
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
SQInteger Connection::QueryF(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
const Int32 top = sq_gettop(vm);
|
2016-03-11 20:07:55 +01:00
|
|
|
// Was the query value specified?
|
2016-02-27 10:57:29 +01:00
|
|
|
if (top <= 1)
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Missing query value");
|
|
|
|
}
|
|
|
|
// The connection instance
|
|
|
|
Connection * conn = nullptr;
|
|
|
|
// Attempt to extract the argument values
|
|
|
|
try
|
|
|
|
{
|
|
|
|
conn = Var< Connection * >(vm, 1).value;
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
// Propagate the error
|
|
|
|
return sq_throwerror(vm, e.Message().c_str());
|
|
|
|
}
|
2016-02-27 10:57:29 +01:00
|
|
|
// Do we have a valid connection instance?
|
2016-03-11 20:07:55 +01:00
|
|
|
if (!conn)
|
|
|
|
{
|
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection instance");
|
|
|
|
}
|
|
|
|
// Do we have a valid connection identifier?
|
2016-04-02 11:11:14 +02:00
|
|
|
else if (!(conn->m_Handle))
|
2016-03-11 20:07:55 +01:00
|
|
|
{
|
2016-02-27 10:57:29 +01:00
|
|
|
return sq_throwerror(vm, "Invalid SQLite connection reference");
|
2016-03-11 20:07:55 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to retrieve the value from the stack as a string
|
|
|
|
StackStrF val(vm, 2);
|
|
|
|
// Have we failed to retrieve the string?
|
|
|
|
if (SQ_FAILED(val.mRes))
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-04-02 11:11:14 +02:00
|
|
|
return val.mRes; // Propagate the error!
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-04-02 11:11:14 +02:00
|
|
|
// Attempt to create a statement with the specified query
|
|
|
|
try
|
2016-02-27 10:57:29 +01:00
|
|
|
{
|
2016-04-02 11:11:14 +02:00
|
|
|
ClassType< Statement >::PushInstance(vm, new Statement(conn->m_Handle, val.mPtr));
|
|
|
|
}
|
|
|
|
catch (const Sqrat::Exception & e)
|
|
|
|
{
|
|
|
|
return sq_throwerror(vm, e.Message().c_str());
|
2016-02-27 10:57:29 +01:00
|
|
|
}
|
2016-03-11 20:07:55 +01:00
|
|
|
// This function returned a value
|
2016-02-27 10:57:29 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-06-15 22:49:25 +02:00
|
|
|
// ================================================================================================
|
|
|
|
void Register_Connection(Table & sqlns)
|
|
|
|
{
|
|
|
|
sqlns.Bind(_SC("Connection"),
|
|
|
|
Class< Connection >(sqlns.GetVM(), _SC("SqSQLiteConnection"))
|
|
|
|
// Constructors
|
|
|
|
.Ctor()
|
|
|
|
.Ctor< CCStr >()
|
|
|
|
.Ctor< CCStr, Int32 >()
|
|
|
|
.Ctor< CCStr, Int32, CCStr >()
|
|
|
|
// Meta-methods
|
|
|
|
.Func(_SC("_cmp"), &Connection::Cmp)
|
|
|
|
.SquirrelFunc(_SC("_typename"), &Connection::Typename)
|
|
|
|
.Func(_SC("_tostring"), &Connection::ToString)
|
|
|
|
// Properties
|
|
|
|
.Prop(_SC("IsValid"), &Connection::IsValid)
|
|
|
|
.Prop(_SC("Connected"), &Connection::IsConnected)
|
|
|
|
.Prop(_SC("References"), &Connection::GetRefCount)
|
|
|
|
.Prop(_SC("Status"), &Connection::GetStatus)
|
|
|
|
.Prop(_SC("Flags"), &Connection::GetFlags)
|
|
|
|
.Prop(_SC("Name"), &Connection::GetName)
|
|
|
|
.Prop(_SC("VFS"), &Connection::GetVFS)
|
|
|
|
.Prop(_SC("ErrCode"), &Connection::GetErrorCode)
|
|
|
|
.Prop(_SC("ExErrCode"), &Connection::GetExtendedErrorCode)
|
|
|
|
.Prop(_SC("ExtendedErrCode"), &Connection::GetExtendedErrorCode)
|
|
|
|
.Prop(_SC("ErrStr"), &Connection::GetErrStr)
|
|
|
|
.Prop(_SC("ErrMsg"), &Connection::GetErrMsg)
|
|
|
|
.Prop(_SC("ReadOnly"), &Connection::IsReadOnly)
|
|
|
|
.Prop(_SC("Autocommit"), &Connection::GetAutoCommit)
|
|
|
|
.Prop(_SC("LastInsertRowId"), &Connection::GetLastInsertRowID)
|
|
|
|
.Prop(_SC("Changes"), &Connection::GetChanges)
|
|
|
|
.Prop(_SC("TotalChanges"), &Connection::GetTotalChanges)
|
|
|
|
.Prop(_SC("Trace"), &Connection::GetTracing, &Connection::SetTracing)
|
|
|
|
.Prop(_SC("Profile"), &Connection::GetProfiling, &Connection::SetProfiling)
|
|
|
|
.Prop(_SC("QueueSize"), &Connection::QueueSize)
|
|
|
|
// Member Methods
|
|
|
|
.Func(_SC("Release"), &Connection::Release)
|
|
|
|
.Func(_SC("Exec"), &Connection::Exec)
|
|
|
|
.Func(_SC("Queue"), &Connection::Queue)
|
|
|
|
.Func(_SC("Query"), &Connection::Query)
|
|
|
|
.Func(_SC("TableExists"), &Connection::TableExists)
|
|
|
|
.Func(_SC("InterruptOperation"), &Connection::InterruptOperation)
|
|
|
|
.Func(_SC("SetBusyTimeout"), &Connection::SetBusyTimeout)
|
|
|
|
.Func(_SC("ReleaseMemory"), &Connection::ReleaseMemory)
|
|
|
|
.Func(_SC("ReserveQueue"), &Connection::ReserveQueue)
|
|
|
|
.Func(_SC("CompactQueue"), &Connection::CompactQueue)
|
|
|
|
.Func(_SC("ClearQueue"), &Connection::ClearQueue)
|
|
|
|
.Func(_SC("PopQueue"), &Connection::PopQueue)
|
|
|
|
// Member Overloads
|
|
|
|
.Overload< void (Connection::*)(CSStr) >(_SC("Open"), &Connection::Open)
|
|
|
|
.Overload< void (Connection::*)(CSStr, Int32) >(_SC("Open"), &Connection::Open)
|
|
|
|
.Overload< void (Connection::*)(CSStr, Int32, CSStr) >(_SC("Open"), &Connection::Open)
|
|
|
|
.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)
|
|
|
|
.Overload< Int32 (Connection::*)(void) >(_SC("Flush"), &Connection::Flush)
|
|
|
|
.Overload< Int32 (Connection::*)(SQInteger) >(_SC("Flush"), &Connection::Flush)
|
|
|
|
.Overload< Int32 (Connection::*)(Object &, Function &) >(_SC("Flush"), &Connection::Flush)
|
|
|
|
.Overload< Int32 (Connection::*)(SQInteger, Object &, Function &) >(_SC("Flush"), &Connection::Flush)
|
|
|
|
// Squirrel Methods
|
|
|
|
.SquirrelFunc(_SC("ExecF"), &Connection::ExecF)
|
|
|
|
.SquirrelFunc(_SC("QueueF"), &Connection::QueueF)
|
|
|
|
.SquirrelFunc(_SC("QueryF"), &Connection::QueryF)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-02-27 10:57:29 +01:00
|
|
|
} // Namespace:: SqMod
|