More sql stuff

This commit is contained in:
Henrique
2012-08-02 08:36:21 -03:00
parent ac65ea5843
commit 7116f6dea1
6 changed files with 77 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
#include "database.h"
Database::Database()
{
}
Database::~Database()
{
}

View File

@@ -0,0 +1,15 @@
#ifndef DATABASE_H
#define DATABASE_H
#include "declarations.h"
#include <framework/global.h>
#include <framework/luaengine/luaobject.h>
class Database : public LuaObject
{
public:
Database();
~Database();
};
#endif

View File

@@ -0,0 +1,32 @@
/*
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef FRAMEWORK_SQL_DECLARATIONS_H
#define FRAMEWORK_SQL_DECLARATIONS_H
#include <framework/global.h>
class DatabaseMySQL;
typedef stdext::shared_object_ptr<DatabaseMySQL> DatabaseMySQLPtr;
#endif

View File

@@ -1,6 +1,7 @@
#ifndef DATABASE_H
#define DATABASE_H
#ifndef DATABASEMYSQL_H
#define DATABASEMYSQL_H
#include "database.h"
#include <framework/global.h>
#ifdef WIN32
#include <winsock2.h>
@@ -9,7 +10,7 @@
class DBResult;
class DatabaseMySQL
class DatabaseMySQL : public Database
{
public:
DatabaseMySQL();