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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? sqlite3.h

?? SQLite中如何用API操作BLOB類型的字段
?? H
?? 第 1 頁 / 共 4 頁
字號:
/*** 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.141 2005/09/08 10:58:52 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.2.8"/*** 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 3002008/*** 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.*/#if 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/*** 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 */#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 *//*** 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.**** Calling this routine with an argument less than or equal to zero** turns off all busy handlers.*/int sqlite3_busy_timeout(sqlite3*, int ms);/*** This next routine is really just a wrapper around sqlite3_exec().** Instead of invoking a user-supplied callback for each row of the** result, this routine remembers each row of the result in memory** obtained from malloc(), then returns all of the result after the** query has finished. **** As an example, suppose the query result where this table:****        Name        | Age**        -----------------------**        Alice       | 43**        Bob         | 28**        Cindy       | 21**** If the 3rd argument were &azResult then after the function returns** azResult will contain the following data:****        azResult[0] = "Name";**        azResult[1] = "Age";**        azResult[2] = "Alice";**        azResult[3] = "43";

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人鲁色资源国产91色综| 国产精品香蕉一区二区三区| 色天天综合色天天久久| 日韩av在线播放中文字幕| 欧美高清在线一区二区| 欧美一区二区在线视频| 91免费在线看| 国产精品资源在线| 轻轻草成人在线| 一区二区三区视频在线看| 国产三级精品三级在线专区| 91精品国产入口| 欧美日韩五月天| 91丨九色丨蝌蚪丨老版| 国产传媒一区在线| 精品在线播放午夜| 蜜臀91精品一区二区三区| 亚洲综合999| 亚洲精品视频免费观看| 中文字幕久久午夜不卡| 久久久久久久精| 精品国产免费视频| 日韩欧美色电影| 欧美精品精品一区| 欧美精品v国产精品v日韩精品| 成人av在线资源网站| 国产精品一区二区免费不卡| 麻豆国产精品777777在线| 首页国产欧美久久| 丝袜诱惑亚洲看片| 亚洲成av人**亚洲成av**| 一区二区三区精品视频| 亚洲人成影院在线观看| 国产精品久久久久永久免费观看| 精品国产百合女同互慰| 精品福利在线导航| 精品久久久久久无| 亚洲精品一区二区三区四区高清| 日韩三级精品电影久久久| 日韩一区二区电影在线| 日韩欧美电影在线| 欧美成人午夜电影| 久久综合给合久久狠狠狠97色69| 精品久久久久久无| 欧美激情资源网| 中文字幕va一区二区三区| 中文字幕一区在线观看视频| 中文字幕在线不卡国产视频| 亚洲欧美日韩人成在线播放| 2021久久国产精品不只是精品| 久久综合九色综合欧美亚洲| 久久久综合网站| 国产精品久久毛片av大全日韩| 亚洲丝袜美腿综合| 亚洲丶国产丶欧美一区二区三区| 亚洲大片在线观看| 美女www一区二区| 国模娜娜一区二区三区| 成人免费av在线| 一本色道久久综合亚洲91| 欧美人狂配大交3d怪物一区| 日韩欧美一二区| 中文字幕制服丝袜成人av| 亚洲在线视频一区| 偷拍一区二区三区四区| 精品亚洲国产成人av制服丝袜| 国产高清不卡一区| 色噜噜偷拍精品综合在线| 制服丝袜激情欧洲亚洲| 国产亚洲女人久久久久毛片| 综合分类小说区另类春色亚洲小说欧美 | 精品欧美一区二区在线观看| 精品国产乱子伦一区| 亚洲国产激情av| 亚洲成人精品一区| 国产麻豆精品一区二区| 色成年激情久久综合| 日韩欧美精品三级| 亚洲欧美电影一区二区| 日韩 欧美一区二区三区| 国产福利精品一区| 欧美日韩一卡二卡三卡| 久久久99精品免费观看| 一区二区三区四区激情| 激情五月播播久久久精品| 色综合久久九月婷婷色综合| 日韩视频一区二区在线观看| 18欧美乱大交hd1984| 日韩成人一区二区| 99久久精品国产麻豆演员表| 欧美中文字幕不卡| 精品久久国产字幕高潮| 一区二区久久久久久| 国产毛片精品一区| 欧美日韩高清在线| 亚洲欧美自拍偷拍| 狠狠色2019综合网| 欧美日韩久久久久久| 国产精品久久久久婷婷二区次| 男人的天堂久久精品| 色综合天天性综合| 国产日韩视频一区二区三区| 日本在线不卡视频| 在线视频欧美精品| 国产精品人妖ts系列视频| 久久成人av少妇免费| 欧美日韩一区二区在线观看视频| 国产精品午夜电影| 国产一区二区福利| 91精品国产美女浴室洗澡无遮挡| 亚洲免费观看视频| 国产ts人妖一区二区| 精品免费一区二区三区| 水野朝阳av一区二区三区| 在线视频亚洲一区| 国产精品麻豆视频| 国产精品综合视频| 久久婷婷久久一区二区三区| 免费在线观看精品| 欧美日韩极品在线观看一区| 樱花影视一区二区| 91免费国产在线观看| 日韩毛片精品高清免费| 成人精品电影在线观看| 国产色91在线| 国产精品69久久久久水密桃| 欧美va亚洲va| 全国精品久久少妇| 欧美一区二区三区影视| 秋霞午夜鲁丝一区二区老狼| 日韩视频永久免费| 美女视频一区二区| 日韩三级精品电影久久久| 麻豆成人av在线| 精品久久久久久久久久久久久久久久久| 日韩精品免费专区| 欧美一二三在线| 精品综合免费视频观看| 久久美女高清视频| 高清久久久久久| 国产精品卡一卡二| 色婷婷亚洲精品| 亚洲一区二区三区中文字幕| 欧美性色黄大片手机版| 亚洲mv在线观看| 91精品国产综合久久久久| 蜜桃av一区二区| www激情久久| 不卡欧美aaaaa| 亚洲黄色录像片| 91.成人天堂一区| 久久99久久久欧美国产| 国产午夜精品一区二区| 成人av网址在线观看| 亚洲激情欧美激情| 91精品久久久久久蜜臀| 国产在线视视频有精品| 国产精品免费网站在线观看| 色综合久久99| 丝袜亚洲另类欧美综合| 欧美精品一区二区三区蜜桃视频 | 欧亚一区二区三区| 亚洲一区二区视频在线| 91精品国产91综合久久蜜臀| 久久精品999| 最新国产精品久久精品| 在线播放亚洲一区| 欧美福利电影网| 精品免费日韩av| 亚洲老妇xxxxxx| 日日夜夜免费精品视频| 日韩一区二区三区视频在线 | 久久久久久日产精品| 精品日韩在线观看| av男人天堂一区| 中文字幕精品一区| 亚洲精品国产无天堂网2021| 国产精品色呦呦| 天天色综合成人网| 国产欧美久久久精品影院| 色综合天天性综合| 久久国产精品99精品国产| 色噜噜狠狠色综合欧洲selulu| 亚洲电影一区二区三区| 国内成人免费视频| 一区二区三区日韩在线观看| 日韩欧美一区二区三区在线| 91免费观看国产| 久久99精品国产.久久久久| 亚洲国产成人一区二区三区| 欧美午夜电影一区| 成人精品免费看| 亚洲精选在线视频| 91丨九色丨蝌蚪丨老版| 91国偷自产一区二区三区观看| 中文字幕av免费专区久久| 欧美剧在线免费观看网站 | 欧美三日本三级三级在线播放| 国产呦萝稀缺另类资源| 中文字幕一区二区三区在线不卡|