Initial implementation of the MySQL statement class.

Various other additions and improvements to the MySQL module.
This commit is contained in:
Sandu Liviu Catalin
2016-06-05 05:08:59 +03:00
parent fc8fcbccd9
commit 3affe10c35
8 changed files with 392 additions and 59 deletions
+9
View File
@@ -37,6 +37,15 @@ public:
/* ... */
}
/* --------------------------------------------------------------------------------------------
* Base constructor.
*/
Connection(const ConnHnd & conn)
: m_Handle(conn)
{
/* ... */
}
/* --------------------------------------------------------------------------------------------
* Copy constructor.
*/