亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sqlite3.h

?? sqlite讀寫VC例子,很不錯
?? H
?? 第 1 頁 / 共 5 頁
字號:
/*** 2001 September 15**** The author disclaims copyright to this source code.  In place of** a legal notice, here is a blessing:****    May you do good and not evil.**    May you find forgiveness for yourself and forgive others.**    May you share freely, never taking more than you give.***************************************************************************** This header file defines the interface that the SQLite library** presents to client programs.**** @(#) $Id: sqlite.h.in,v 1.187 2006/07/08 18:09:15 drh Exp $*/#ifndef _SQLITE3_H_#define _SQLITE3_H_#include <stdarg.h>     /* Needed for the definition of va_list *//*** Make sure we can call this stuff from C++.*/#ifdef __cplusplusextern "C" {#endif/*** The version of the SQLite library.*/#ifdef SQLITE_VERSION# undef SQLITE_VERSION#endif#define SQLITE_VERSION         "3.3.7"/*** The format of the version string is "X.Y.Z<trailing string>", where** X is the major version number, Y is the minor version number and Z** is the release number. The trailing string is often "alpha" or "beta".** For example "3.1.1beta".**** The SQLITE_VERSION_NUMBER is an integer with the value ** (X*100000 + Y*1000 + Z). For example, for version "3.1.1beta", ** SQLITE_VERSION_NUMBER is set to 3001001. To detect if they are using ** version 3.1.1 or greater at compile time, programs may use the test ** (SQLITE_VERSION_NUMBER>=3001001).*/#ifdef SQLITE_VERSION_NUMBER# undef SQLITE_VERSION_NUMBER#endif#define SQLITE_VERSION_NUMBER 3003007/*** The version string is also compiled into the library so that a program** can check to make sure that the lib*.a file and the *.h file are from** the same version.  The sqlite3_libversion() function returns a pointer** to the sqlite3_version variable - useful in DLLs which cannot access** global variables.*/extern const char sqlite3_version[];const char *sqlite3_libversion(void);/*** Return the value of the SQLITE_VERSION_NUMBER macro when the** library was compiled.*/int sqlite3_libversion_number(void);/*** Each open sqlite database is represented by an instance of the** following opaque structure.*/typedef struct sqlite3 sqlite3;/*** Some compilers do not support the "long long" datatype.  So we have** to do a typedef that for 64-bit integers that depends on what compiler** is being used.*/#ifdef SQLITE_INT64_TYPE  typedef SQLITE_INT64_TYPE sqlite_int64;  typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;#elif defined(_MSC_VER) || defined(__BORLANDC__)  typedef __int64 sqlite_int64;  typedef unsigned __int64 sqlite_uint64;#else  typedef long long int sqlite_int64;  typedef unsigned long long int sqlite_uint64;#endif/*** If compiling for a processor that lacks floating point support,** substitute integer for floating-point*/#ifdef SQLITE_OMIT_FLOATING_POINT# define double sqlite_int64#endif/*** A function to close the database.**** Call this function with a pointer to a structure that was previously** returned from sqlite3_open() and the corresponding database will by closed.**** All SQL statements prepared using sqlite3_prepare() or** sqlite3_prepare16() must be deallocated using sqlite3_finalize() before** this routine is called. Otherwise, SQLITE_BUSY is returned and the** database connection remains open.*/int sqlite3_close(sqlite3 *);/*** The type for a callback function.*/typedef int (*sqlite3_callback)(void*,int,char**, char**);/*** A function to executes one or more statements of SQL.**** If one or more of the SQL statements are queries, then** the callback function specified by the 3rd parameter is** invoked once for each row of the query result.  This callback** should normally return 0.  If the callback returns a non-zero** value then the query is aborted, all subsequent SQL statements** are skipped and the sqlite3_exec() function returns the SQLITE_ABORT.**** The 4th parameter is an arbitrary pointer that is passed** to the callback function as its first parameter.**** The 2nd parameter to the callback function is the number of** columns in the query result.  The 3rd parameter to the callback** is an array of strings holding the values for each column.** The 4th parameter to the callback is an array of strings holding** the names of each column.**** The callback function may be NULL, even for queries.  A NULL** callback is not an error.  It just means that no callback** will be invoked.**** If an error occurs while parsing or evaluating the SQL (but** not while executing the callback) then an appropriate error** message is written into memory obtained from malloc() and** *errmsg is made to point to that message.  The calling function** is responsible for freeing the memory that holds the error** message.   Use sqlite3_free() for this.  If errmsg==NULL,** then no error message is ever written.**** The return value is is SQLITE_OK if there are no errors and** some other return code if there is an error.  The particular** return value depends on the type of error. **** If the query could not be executed because a database file is** locked or busy, then this function returns SQLITE_BUSY.  (This** behavior can be modified somewhat using the sqlite3_busy_handler()** and sqlite3_busy_timeout() functions below.)*/int sqlite3_exec(  sqlite3*,                     /* An open database */  const char *sql,              /* SQL to be executed */  sqlite3_callback,             /* Callback function */  void *,                       /* 1st argument to callback function */  char **errmsg                 /* Error msg written here */);/*** Return values for sqlite3_exec() and sqlite3_step()*/#define SQLITE_OK           0   /* Successful result *//* beginning-of-error-codes */#define SQLITE_ERROR        1   /* SQL error or missing database */#define SQLITE_INTERNAL     2   /* NOT USED. Internal logic error in SQLite */#define SQLITE_PERM         3   /* Access permission denied */#define SQLITE_ABORT        4   /* Callback routine requested an abort */#define SQLITE_BUSY         5   /* The database file is locked */#define SQLITE_LOCKED       6   /* A table in the database is locked */#define SQLITE_NOMEM        7   /* A malloc() failed */#define SQLITE_READONLY     8   /* Attempt to write a readonly database */#define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite3_interrupt()*/#define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */#define SQLITE_CORRUPT     11   /* The database disk image is malformed */#define SQLITE_NOTFOUND    12   /* NOT USED. Table or record not found */#define SQLITE_FULL        13   /* Insertion failed because database is full */#define SQLITE_CANTOPEN    14   /* Unable to open the database file */#define SQLITE_PROTOCOL    15   /* Database lock protocol error */#define SQLITE_EMPTY       16   /* Database is empty */#define SQLITE_SCHEMA      17   /* The database schema changed */#define SQLITE_TOOBIG      18   /* NOT USED. Too much data for one row */#define SQLITE_CONSTRAINT  19   /* Abort due to contraint violation */#define SQLITE_MISMATCH    20   /* Data type mismatch */#define SQLITE_MISUSE      21   /* Library used incorrectly */#define SQLITE_NOLFS       22   /* Uses OS features not supported on host */#define SQLITE_AUTH        23   /* Authorization denied */#define SQLITE_FORMAT      24   /* Auxiliary database format error */#define SQLITE_RANGE       25   /* 2nd parameter to sqlite3_bind out of range */#define SQLITE_NOTADB      26   /* File opened that is not a database file */#define SQLITE_ROW         100  /* sqlite3_step() has another row ready */#define SQLITE_DONE        101  /* sqlite3_step() has finished executing *//* end-of-error-codes *//*** Each entry in an SQLite table has a unique integer key.  (The key is** the value of the INTEGER PRIMARY KEY column if there is such a column,** otherwise the key is generated at random.  The unique key is always** available as the ROWID, OID, or _ROWID_ column.)  The following routine** returns the integer key of the most recent insert in the database.**** This function is similar to the mysql_insert_id() function from MySQL.*/sqlite_int64 sqlite3_last_insert_rowid(sqlite3*);/*** This function returns the number of database rows that were changed** (or inserted or deleted) by the most recent called sqlite3_exec().**** All changes are counted, even if they were later undone by a** ROLLBACK or ABORT.  Except, changes associated with creating and** dropping tables are not counted.**** If a callback invokes sqlite3_exec() recursively, then the changes** in the inner, recursive call are counted together with the changes** in the outer call.**** SQLite implements the command "DELETE FROM table" without a WHERE clause** by dropping and recreating the table.  (This is much faster than going** through and deleting individual elements form the table.)  Because of** this optimization, the change count for "DELETE FROM table" will be** zero regardless of the number of elements that were originally in the** table. To get an accurate count of the number of rows deleted, use** "DELETE FROM table WHERE 1" instead.*/int sqlite3_changes(sqlite3*);/*** This function returns the number of database rows that have been** modified by INSERT, UPDATE or DELETE statements since the database handle** was opened. This includes UPDATE, INSERT and DELETE statements executed** as part of trigger programs. All changes are counted as soon as the** statement that makes them is completed (when the statement handle is** passed to sqlite3_reset() or sqlite_finalise()).**** SQLite implements the command "DELETE FROM table" without a WHERE clause** by dropping and recreating the table.  (This is much faster than going** through and deleting individual elements form the table.)  Because of** this optimization, the change count for "DELETE FROM table" will be** zero regardless of the number of elements that were originally in the** table. To get an accurate count of the number of rows deleted, use** "DELETE FROM table WHERE 1" instead.*/int sqlite3_total_changes(sqlite3*);/* This function causes any pending database operation to abort and** return at its earliest opportunity.  This routine is typically** called in response to a user action such as pressing "Cancel"** or Ctrl-C where the user wants a long query operation to halt** immediately.*/void sqlite3_interrupt(sqlite3*);/* These functions return true if the given input string comprises** one or more complete SQL statements. For the sqlite3_complete() call,** the parameter must be a nul-terminated UTF-8 string. For** sqlite3_complete16(), a nul-terminated machine byte order UTF-16 string** is required.**** The algorithm is simple.  If the last token other than spaces** and comments is a semicolon, then return true.  otherwise return** false.*/int sqlite3_complete(const char *sql);int sqlite3_complete16(const void *sql);/*** This routine identifies a callback function that is invoked** whenever an attempt is made to open a database table that is** currently locked by another process or thread.  If the busy callback** is NULL, then sqlite3_exec() returns SQLITE_BUSY immediately if** it finds a locked table.  If the busy callback is not NULL, then** sqlite3_exec() invokes the callback with three arguments.  The** second argument is the name of the locked table and the third** argument is the number of times the table has been busy.  If the** busy callback returns 0, then sqlite3_exec() immediately returns** SQLITE_BUSY.  If the callback returns non-zero, then sqlite3_exec()** tries to open the table again and the cycle repeats.**** The default busy callback is NULL.**** Sqlite is re-entrant, so the busy handler may start a new query. ** (It is not clear why anyone would every want to do this, but it** is allowed, in theory.)  But the busy handler may not close the** database.  Closing the database from a busy handler will delete ** data structures out from under the executing query and will ** probably result in a coredump.*/int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);/*** This routine sets a busy handler that sleeps for a while when a** table is locked.  The handler will sleep multiple times until ** at least "ms" milleseconds of sleeping have been done.  After** "ms" milleseconds of sleeping, the handler returns 0 which** causes sqlite3_exec() to return SQLITE_BUSY.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品123| 国产一区欧美一区| 一区二区高清在线| 亚洲天堂av一区| 亚洲男人的天堂网| 亚洲美女免费在线| 午夜精品久久久久久久99水蜜桃| 一区二区在线观看av| 亚洲女人的天堂| 亚洲一区二区三区中文字幕| 一区二区在线观看免费视频播放 | 国产一区二区三区四区在线观看| 日本不卡视频在线观看| 亚洲第一电影网| 日韩成人av影视| 国产精品自拍三区| 成人av电影在线网| 欧美系列一区二区| 欧美一二三区在线观看| 久久一区二区三区四区| 亚洲精品国久久99热| 视频一区视频二区在线观看| 天天做天天摸天天爽国产一区| 老司机一区二区| 成人av资源网站| 欧美一区二区大片| ●精品国产综合乱码久久久久| 一卡二卡欧美日韩| 激情五月婷婷综合网| 成人午夜大片免费观看| 欧美综合视频在线观看| 久久久久久一二三区| 亚洲精品国产第一综合99久久 | 日韩制服丝袜av| 国产精一品亚洲二区在线视频| 97久久超碰精品国产| 欧美乱熟臀69xxxxxx| 国产色产综合产在线视频| 亚洲图片欧美视频| 国产美女av一区二区三区| 色婷婷久久久亚洲一区二区三区| 日韩一区二区在线观看视频| 国产精品久久精品日日| 青青国产91久久久久久| 91女厕偷拍女厕偷拍高清| 精品国产一区二区三区久久影院| 亚洲欧美日韩久久精品| 国产精品亚洲一区二区三区在线| 欧美日韩中文字幕一区二区| 国产精品久久久久久久久久免费看 | 激情欧美日韩一区二区| 在线观看欧美日本| 国产精品免费久久| 国产呦精品一区二区三区网站| 欧美亚洲综合另类| 亚洲欧美日韩国产综合在线| 粉嫩久久99精品久久久久久夜| 337p亚洲精品色噜噜狠狠| 亚洲激情六月丁香| 91蝌蚪porny成人天涯| 国产天堂亚洲国产碰碰| 九九**精品视频免费播放| 欧美性一二三区| 亚洲男人的天堂在线观看| 99久久er热在这里只有精品66| 亚洲少妇30p| 成人小视频在线| 国产精品入口麻豆原神| 国产福利精品一区| 国产婷婷一区二区| 成人av影院在线| 中文字幕视频一区| 成人在线一区二区三区| 国产精品沙发午睡系列990531| 国产高清在线观看免费不卡| 国产午夜亚洲精品午夜鲁丝片| 国产黑丝在线一区二区三区| 久久久不卡网国产精品二区| 国产河南妇女毛片精品久久久| 国产色婷婷亚洲99精品小说| 成人午夜在线播放| 亚洲天堂精品在线观看| 欧美亚洲国产一区二区三区va | 国产精品69毛片高清亚洲| 久久蜜桃av一区二区天堂| 国产激情视频一区二区在线观看 | 91精品中文字幕一区二区三区| 舔着乳尖日韩一区| 久久久青草青青国产亚洲免观| 丁香婷婷综合激情五月色| 亚洲精品高清在线| 在线综合视频播放| 国产精品1区2区| 亚洲综合偷拍欧美一区色| 欧美福利一区二区| 国产原创一区二区三区| 中文字幕制服丝袜成人av| 在线免费观看日韩欧美| 久久超级碰视频| 最新国产精品久久精品| 欧美日韩久久久一区| 激情欧美一区二区| 亚洲精品水蜜桃| 欧美成人性战久久| 91网上在线视频| 看电影不卡的网站| 亚洲综合无码一区二区| 欧美r级电影在线观看| 色就色 综合激情| 久久99精品国产麻豆婷婷| 亚洲激情一二三区| 久久综合久久99| 欧美精三区欧美精三区| 成人亚洲精品久久久久软件| 亚洲国产日韩av| 日本一区二区三区高清不卡| 欧美日韩日本视频| 不卡高清视频专区| 美女网站在线免费欧美精品| 亚洲欧洲日韩一区二区三区| 日韩免费福利电影在线观看| 91在线观看视频| 国产精品一二三| 秋霞电影一区二区| 亚洲国产aⅴ天堂久久| 国产精品二区一区二区aⅴ污介绍| 91精品国产综合久久久久久漫画 | 91国在线观看| 国产成人av资源| 国产在线一区观看| 午夜激情综合网| 亚洲综合色网站| 亚洲欧美日韩在线不卡| 中文字幕第一区| 久久久一区二区| 亚洲精品一线二线三线无人区| 欧美美女一区二区| 欧美性大战久久久久久久蜜臀| 成人av网址在线| 色婷婷国产精品| 91影院在线观看| 不卡电影免费在线播放一区| 国产精品18久久久久久久网站| 狠狠色狠狠色合久久伊人| 日本美女一区二区三区| 日韩黄色免费网站| 青青草一区二区三区| 全国精品久久少妇| 日本伊人色综合网| 免费人成精品欧美精品| 美女性感视频久久| 久久99精品国产麻豆婷婷洗澡| 美女视频一区在线观看| 日韩福利视频网| 免费欧美日韩国产三级电影| 蜜桃av噜噜一区| 美女脱光内衣内裤视频久久影院| 美脚の诱脚舐め脚责91| 激情综合五月婷婷| 国产激情偷乱视频一区二区三区| 国产成人av电影在线| 成人晚上爱看视频| www.亚洲色图.com| 欧美性猛交xxxx乱大交退制版 | 亚洲电影中文字幕在线观看| 午夜久久久久久| 九九九精品视频| 成人av在线网| 91行情网站电视在线观看高清版| 欧美日韩另类一区| 7777女厕盗摄久久久| 欧美精品一区二区久久婷婷 | 色偷偷88欧美精品久久久| 色婷婷亚洲婷婷| 日韩一区二区三区在线视频| 国产偷国产偷亚洲高清人白洁| 亚洲欧美视频在线观看| 欧美a级理论片| 成人国产精品免费| 欧美性一区二区| 久久嫩草精品久久久精品一| 一区精品在线播放| 蜜臀av一区二区在线观看| 高清视频一区二区| 欧美综合亚洲图片综合区| 精品99一区二区三区| 亚洲欧美日韩国产综合| 日本成人中文字幕在线视频| 成人va在线观看| 日韩欧美中文一区| 最新久久zyz资源站| 精品中文字幕一区二区| 91麻豆国产精品久久| 久久综合五月天婷婷伊人| 亚洲自拍另类综合| 国产寡妇亲子伦一区二区| 6080国产精品一区二区| 中文字幕字幕中文在线中不卡视频| 青椒成人免费视频| 欧美在线免费观看视频|