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

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

?? sqlite3.h

?? Sqlite3工作平臺,使用sqlite引擎
?? 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.194 2006/09/16 21:45:14 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.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 3003008/*** 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 *//*** Using the sqlite3_extended_result_codes() API, you can cause** SQLite to return result codes with additional information in** their upper bits.  The lower 8 bits will be the same as the** primary result codes above.  But the upper bits might contain** more specific error information.**** To extract the primary result code from an extended result code,** simply mask off the lower 8 bits.****        primary = extended & 0xff;**** New result error codes may be added from time to time.  Software** that uses the extended result codes should plan accordingly and be** sure to always handle new unknown codes gracefully.**** The SQLITE_OK result code will never be extended.  It will always** be exactly zero.**** The extended result codes always have the primary result code** as a prefix.  Primary result codes only contain a single "_"** character.  Extended result codes contain two or more "_" characters.*/#define SQLITE_IOERR_READ          (SQLITE_IOERR | (1<<8))#define SQLITE_IOERR_SHORT_READ    (SQLITE_IOERR | (2<<8))#define SQLITE_IOERR_WRITE         (SQLITE_IOERR | (3<<8))#define SQLITE_IOERR_FSYNC         (SQLITE_IOERR | (4<<8))#define SQLITE_IOERR_DIR_FSYNC     (SQLITE_IOERR | (5<<8))#define SQLITE_IOERR_TRUNCATE      (SQLITE_IOERR | (6<<8))#define SQLITE_IOERR_FSTAT         (SQLITE_IOERR | (7<<8))#define SQLITE_IOERR_UNLOCK        (SQLITE_IOERR | (8<<8))#define SQLITE_IOERR_RDLOCK        (SQLITE_IOERR | (9<<8))/*** Enable or disable the extended result codes.*/int sqlite3_extended_result_codes(sqlite3*, int onoff);/*** 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.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区看久久| 亚洲国产成人高清精品| 日产欧产美韩系列久久99| 91丨porny丨中文| 中文字幕av在线一区二区三区| 黄页网站大全一区二区| 欧美视频在线不卡| 亚洲精品中文在线观看| 色偷偷久久一区二区三区| 国产精品美女久久福利网站| 热久久国产精品| 99riav一区二区三区| **欧美大码日韩| av电影一区二区| 国产精品国产自产拍在线| 成人av网站大全| 日韩精品专区在线| 精品亚洲成a人| 3d动漫精品啪啪1区2区免费| 日韩精品亚洲一区二区三区免费| 色哟哟一区二区| 亚洲欧洲色图综合| 国产91色综合久久免费分享| 国产精品三级av在线播放| 91网站最新地址| 亚洲午夜在线电影| 欧美日本在线视频| 久久国内精品自在自线400部| 精品国产乱码91久久久久久网站| 国产成人免费网站| 亚洲欧美一区二区三区久本道91 | 亚洲国产视频网站| 欧美视频一区二区三区在线观看 | 亚洲免费视频中文字幕| 欧美写真视频网站| 日韩av高清在线观看| 欧美一激情一区二区三区| 国产一区二区在线视频| 亚洲欧洲美洲综合色网| 欧美日韩国产首页| 国产精品1区二区.| 亚洲男人天堂一区| 欧美一区二区三区四区五区| 成人性视频免费网站| 亚洲区小说区图片区qvod| 日韩视频一区二区三区| 成人精品高清在线| 五月天激情综合| 久久精品水蜜桃av综合天堂| 日本精品视频一区二区| 老司机精品视频线观看86| 国产精品免费网站在线观看| 欧美日韩高清影院| 丁香激情综合五月| 一区二区三区在线视频观看58| 欧美一区2区视频在线观看| 成人18精品视频| 亚洲国产成人porn| 国产视频亚洲色图| 在线播放一区二区三区| 成人av动漫网站| 激情亚洲综合在线| 亚洲一区二区三区四区在线免费观看 | 欧美日韩精品欧美日韩精品一综合| 亚洲电影在线播放| 欧美在线不卡一区| 国产乱理伦片在线观看夜一区| 日韩一区欧美小说| 久久人人97超碰com| 884aa四虎影成人精品一区| 91丨九色丨尤物| 国产精品一品二品| 亚洲国产精品一区二区久久恐怖片 | 精品欧美一区二区在线观看| 91久久一区二区| 成人h动漫精品一区二区| 国内精品久久久久影院薰衣草| 亚洲gay无套男同| 亚洲毛片av在线| 国产精品水嫩水嫩| 26uuu精品一区二区在线观看| 欧美日韩黄色一区二区| 欧美最猛性xxxxx直播| av电影在线观看完整版一区二区| 国产做a爰片久久毛片| 蜜臀99久久精品久久久久久软件| 亚洲一二三区在线观看| 亚洲视频一区在线| 中文成人av在线| 欧美经典一区二区| 久久久久久麻豆| 久久欧美一区二区| 久久综合99re88久久爱| 精品福利视频一区二区三区| 日韩欧美亚洲国产精品字幕久久久| 欧美日韩亚洲国产综合| 在线观看亚洲一区| 欧美日韩精品一区二区三区四区 | 韩日av一区二区| 久久精品国产一区二区三| 麻豆传媒一区二区三区| 天堂在线一区二区| 日韩精品一级二级| 美女视频一区在线观看| 日产精品久久久久久久性色| 日本伊人午夜精品| 久久福利资源站| 黑人巨大精品欧美黑白配亚洲| 国内一区二区视频| 免费人成在线不卡| 狠狠色伊人亚洲综合成人| 成人中文字幕合集| 91在线码无精品| 欧美亚洲综合网| 欧美美女黄视频| 欧美一级高清片在线观看| 久久综合九色综合欧美亚洲| 欧美国产欧美综合| 亚洲码国产岛国毛片在线| 亚洲电影一级片| 香蕉加勒比综合久久| 视频一区在线视频| 蜜桃视频免费观看一区| 极品美女销魂一区二区三区免费| 从欧美一区二区三区| 色婷婷久久久久swag精品 | 777亚洲妇女| 久久精品欧美日韩| 一区二区三区视频在线看| 亚洲18女电影在线观看| 另类小说图片综合网| 国产成+人+日韩+欧美+亚洲| 99热精品一区二区| 制服丝袜中文字幕一区| 国产欧美日韩卡一| 亚洲成人午夜电影| 国产精品2024| 欧美日韩亚洲丝袜制服| 中文字幕欧美国产| 三级精品在线观看| 国产毛片精品国产一区二区三区| 91天堂素人约啪| 日韩一本二本av| 日韩美女精品在线| 国产一区二区三区综合| 欧美性三三影院| 中文av一区二区| 看电视剧不卡顿的网站| 国内精品久久久久影院薰衣草| 成人激情免费视频| 91精品国产综合久久香蕉的特点| 2023国产精华国产精品| 亚洲黄色尤物视频| 国产精品18久久久久久久久| 欧美性淫爽ww久久久久无| 久久久久一区二区三区四区| 亚洲成人一区二区| 91丨九色丨蝌蚪富婆spa| 久久综合九色综合97婷婷女人| 亚洲三级理论片| 国产成人亚洲综合a∨猫咪| 91麻豆精品国产91久久久久久久久| 国产精品久久久久影院| 裸体健美xxxx欧美裸体表演| 在线一区二区三区做爰视频网站| 日韩美女天天操| 日韩不卡免费视频| 在线观看国产日韩| 亚洲欧洲中文日韩久久av乱码| 国产成人综合在线观看| 日韩欧美中文字幕一区| 亚洲成国产人片在线观看| 91久久精品一区二区二区| 欧美国产视频在线| 国产成人精品1024| 精品久久久久一区| 美女mm1313爽爽久久久蜜臀| 欧美日韩亚洲综合在线 | 欧美xxxx在线观看| 日韩在线一区二区| 欧美少妇xxx| 亚洲一区二区在线观看视频| 色老头久久综合| 亚洲精品成人在线| 不卡一卡二卡三乱码免费网站| 久久久精品免费网站| 国产一区二区导航在线播放| 日韩欧美国产wwwww| 美女www一区二区| 欧美精品一区二区三| 美脚の诱脚舐め脚责91| 欧美日韩国产一级片| 午夜视频在线观看一区二区三区| 欧美日韩激情一区二区| 午夜不卡在线视频| 久久久青草青青国产亚洲免观| 国产99久久久精品| 一片黄亚洲嫩模| 欧美日韩免费视频| 国产综合色在线|