Arquivos
hhvm/hphp/runtime/ext/ext_sqlite3.h
T
aalexandre 26178124a4 Eliminate int32, uint32, int16, uint16, int8, uint8.
This concludes the inttypes replacement.
These replacement have been mostly mechanical
with the use of cxx_replace.
2013-03-09 10:25:16 -08:00

146 linhas
5.2 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010- Facebook, Inc. (http://www.facebook.com) |
| Copyright (c) 1997-2010 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
*/
#ifndef __EXT_SQLITE3_H__
#define __EXT_SQLITE3_H__
// >>>>>> Generated by idl.php. Do NOT modify. <<<<<<
#include <runtime/base/base_includes.h>
#include <sqlite3.h>
namespace HPHP {
///////////////////////////////////////////////////////////////////////////////
extern const int64_t k_SQLITE3_ASSOC;
extern const int64_t k_SQLITE3_NUM;
extern const int64_t k_SQLITE3_BOTH;
extern const int64_t k_SQLITE3_INTEGER;
extern const int64_t k_SQLITE3_FLOAT;
extern const int64_t k_SQLITE3_TEXT;
extern const int64_t k_SQLITE3_BLOB;
extern const int64_t k_SQLITE3_NULL;
extern const int64_t k_SQLITE3_OPEN_READONLY;
extern const int64_t k_SQLITE3_OPEN_READWRITE;
extern const int64_t k_SQLITE3_OPEN_CREATE;
///////////////////////////////////////////////////////////////////////////////
// class SQLite3
FORWARD_DECLARE_CLASS_BUILTIN(SQLite3);
class c_SQLite3 : public ExtObjectData {
public:
DECLARE_CLASS(SQLite3, SQLite3, ObjectData)
// need to implement
public: c_SQLite3(VM::Class* cls = c_SQLite3::s_cls);
public: ~c_SQLite3();
public: void t___construct(CStrRef filename, int64_t flags = k_SQLITE3_OPEN_READWRITE|k_SQLITE3_OPEN_CREATE, CStrRef encryption_key = null_string);
public: void t_open(CStrRef filename, int64_t flags = k_SQLITE3_OPEN_READWRITE|k_SQLITE3_OPEN_CREATE, CStrRef encryption_key = null_string);
public: bool t_busytimeout(int64_t msecs);
public: bool t_close();
public: bool t_exec(CStrRef sql);
public: Array t_version();
public: int64_t t_lastinsertrowid();
public: int64_t t_lasterrorcode();
public: String t_lasterrormsg();
public: bool t_loadextension(CStrRef extension);
public: int64_t t_changes();
public: String t_escapestring(CStrRef sql);
public: Variant t_prepare(CStrRef sql);
public: Variant t_query(CStrRef sql);
public: Variant t_querysingle(CStrRef sql, bool entire_row = false);
public: bool t_createfunction(CStrRef name, CVarRef callback, int64_t argcount = -1);
public: bool t_createaggregate(CStrRef name, CVarRef step, CVarRef final, int64_t argcount = -1);
public: bool t_openblob(CStrRef table, CStrRef column, int64_t rowid, CStrRef dbname = null_string);
public: void validate() const;
public: sqlite3 *m_raw_db;
DECLARE_BOOST_TYPES(UserDefinedFunc);
struct UserDefinedFunc {
int argc;
Variant func;
Variant step;
Variant fini;
};
public: UserDefinedFuncPtrVec m_udfs;
};
///////////////////////////////////////////////////////////////////////////////
// class SQLite3Stmt
FORWARD_DECLARE_CLASS_BUILTIN(SQLite3Stmt);
class c_SQLite3Stmt : public ExtObjectData {
public:
DECLARE_CLASS(SQLite3Stmt, SQLite3Stmt, ObjectData)
// need to implement
public: c_SQLite3Stmt(VM::Class* cls = c_SQLite3Stmt::s_cls);
public: ~c_SQLite3Stmt();
public: void t___construct(CObjRef dbobject, CStrRef statement);
public: int64_t t_paramcount();
public: bool t_close();
public: bool t_reset();
public: bool t_clear();
public: bool t_bindparam(CVarRef name, VRefParam parameter, int64_t type = k_SQLITE3_TEXT);
public: bool t_bindvalue(CVarRef name, CVarRef parameter, int64_t type = k_SQLITE3_TEXT);
public: Variant t_execute();
public: void validate() const;
public: p_SQLite3 m_db;
public: sqlite3_stmt *m_raw_stmt;
DECLARE_BOOST_TYPES(BoundParam);
struct BoundParam {
int type;
int index;
Variant value;
};
public: BoundParamPtrVec m_bound_params;
};
///////////////////////////////////////////////////////////////////////////////
// class SQLite3Result
FORWARD_DECLARE_CLASS_BUILTIN(SQLite3Result);
class c_SQLite3Result : public ExtObjectData {
public:
DECLARE_CLASS(SQLite3Result, SQLite3Result, ObjectData)
// need to implement
public: c_SQLite3Result(VM::Class* cls = c_SQLite3Result::s_cls);
public: ~c_SQLite3Result();
public: void t___construct();
public: int64_t t_numcolumns();
public: String t_columnname(int64_t column);
public: int64_t t_columntype(int64_t column);
public: Variant t_fetcharray(int64_t mode = k_SQLITE3_BOTH);
public: bool t_reset();
public: bool t_finalize();
public: void validate() const;
public: p_SQLite3Stmt m_stmt;
};
///////////////////////////////////////////////////////////////////////////////
}
#endif // __EXT_SQLITE3_H__