SQLiteXX  0.1.0
 All Classes Namespaces Files Functions Enumerations Enumerator
SQLiteEnums.h
Go to the documentation of this file.
1 
3 #ifndef __SQLITEXX_SQLITE_SQLITEENUMS_H__
4 #define __SQLITEXX_SQLITE_SQLITEENUMS_H__
5 
6 #include <sqlite3.h>
7 
8 
9 namespace sqlite
10 {
13  enum class datatype: int {
14  integer = SQLITE_INTEGER,
15  floating = SQLITE_FLOAT,
16  blob = SQLITE_BLOB,
17  null = SQLITE_NULL,
18  text = SQLITE3_TEXT,
19  };
20 
23  enum class bindtype: int {
24  statically,
26  };
27 }
28 
29 #endif
means that the content will likely change in the near future and that SQLite should make its own priv...
means that the content pointer is constant and will never change.
64-bit signed integer
64-bit IEEE floating point number
bindtype
Used to specify the way to bind a value to a statement.
Definition: SQLiteEnums.h:23
datatype
Every value in SQLite has one of the following fundamental datatypes.
Definition: SQLiteEnums.h:13
A "Binary Large OBject".
Definition: Blob.h:20