From 25cc612855d64a013bdf01c4ab16615eb9b1c268 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Thu, 14 Apr 2016 03:09:12 +0300 Subject: [PATCH] Minor changes in the SQLite module comments. --- modules/sqlite/Common.hpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/modules/sqlite/Common.hpp b/modules/sqlite/Common.hpp index 9a3e92c7..4d81833d 100644 --- a/modules/sqlite/Common.hpp +++ b/modules/sqlite/Common.hpp @@ -201,22 +201,22 @@ protected: */ struct Handle { - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- Pointer mPtr; // The connection handle resource. Counter mRef; // Reference count to the managed handle. - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- Int32 mStatus; // The last status code of this connection handle. - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- QueryList mQueue; // A queue of queries to be executed in groups. - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- Int32 mFlags; // The flags used to create the database connection handle. String mName; // The specified name to be used as the database file. String mVFS; // The specified virtual file system. - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- bool mMemory; // Whether the database exists in memory and not disk. bool mTrace; // Whether tracing was activated on the database. bool mProfile; // Whether profiling was activated on the database. @@ -239,17 +239,17 @@ protected: /* ... */ } - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Destructor. */ ~Handle(); - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Create the database connection resource. */ void Create(CSStr name, Int32 flags, CSStr vfs); - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Execute a specific amount of queries from the queue. */ Int32 Flush(Uint32 num, Object & env, Function & func); @@ -593,7 +593,7 @@ protected: */ struct Handle { - // -------------------------------------------------------------------------------------------- + // ---------------------------------------------------------------------------------------- Pointer mPtr; // The statement handle resource. Counter mRef; // Reference count to the managed handle. @@ -631,17 +631,17 @@ protected: /* ... */ } - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Destructor. */ ~Handle(); - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Create the database statement resource. */ void Create(CSStr query); - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Check whether a specific index is in range. */ bool CheckIndex(Int32 idx) const @@ -649,7 +649,7 @@ protected: return (idx >= 0) && (idx <= mColumns); } - /* -------------------------------------------------------------------------------------------- + /* ---------------------------------------------------------------------------------------- * Retrieve the column index associated with the specified name. */ Int32 GetColumnIndex(CSStr name);