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

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

?? sqlite3.h

?? 能夠運(yùn)行的c調(diào)用sqlite的程序1
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
/*** 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.165 2006/04/04 01:54:55 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.5"/*** 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 3003005/*** 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*);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人av一区二区三区在线| 国产主播一区二区| 精品美女在线观看| 99re视频精品| 国产很黄免费观看久久| 亚洲午夜激情av| 中文成人综合网| 欧美一区二区三区在线电影| 北条麻妃一区二区三区| 国产真实精品久久二三区| 亚洲一区中文在线| 亚洲色图欧美在线| 久久精品亚洲麻豆av一区二区 | yourporn久久国产精品| 蜜桃免费网站一区二区三区| 一区二区三区精品视频在线| 国产欧美日韩亚州综合| 日韩精品专区在线影院观看| 欧美日韩情趣电影| 日本久久电影网| 国产成人精品免费视频网站| 美女www一区二区| 天天av天天翘天天综合网色鬼国产| 日本一区二区免费在线观看视频 | 欧美日韩国产成人在线免费| 成人激情小说网站| 国内久久精品视频| 麻豆精品在线观看| 日产精品久久久久久久性色| 亚洲动漫第一页| 亚洲综合视频在线观看| 成人欧美一区二区三区白人| 欧美国产日韩一二三区| 国产人妖乱国产精品人妖| 欧美第一区第二区| 欧美大白屁股肥臀xxxxxx| 91.com视频| 欧美高清www午色夜在线视频| 欧美伊人久久大香线蕉综合69| 丁香婷婷综合色啪| 处破女av一区二区| 丁香婷婷深情五月亚洲| 成人av电影在线观看| 成人性生交大片免费看中文网站| 成人伦理片在线| 不卡的电影网站| 97超碰欧美中文字幕| 91亚洲永久精品| 色噜噜狠狠色综合欧洲selulu| 91女人视频在线观看| 色综合久久精品| 欧美视频中文字幕| 91精品国产综合久久久久| 日韩一区二区电影在线| 日韩免费福利电影在线观看| 欧美精品一区二区三区蜜臀| 久久久午夜精品| 中文字幕一区二区在线播放| 亚洲日本一区二区| 视频一区二区不卡| 久久国产视频网| 东方欧美亚洲色图在线| 99re热这里只有精品免费视频| 在线视频一区二区三区| 日韩欧美在线观看一区二区三区| 精品国产青草久久久久福利| 国产三级精品在线| 亚洲美女屁股眼交3| 午夜久久久久久久久久一区二区| 美女任你摸久久| 成人理论电影网| 日本高清成人免费播放| 日韩一区二区影院| 国产精品午夜电影| 亚洲一区二区综合| 极品美女销魂一区二区三区| 成人黄色综合网站| 欧美日韩高清一区二区| 精品va天堂亚洲国产| 中文字幕在线不卡一区二区三区| 亚洲一二三四区不卡| 精品一区二区日韩| 91免费在线看| 日韩午夜在线播放| 中文字幕一区二区三区精华液| 五月天欧美精品| 成人在线综合网站| 欧美日韩三级一区| 中文字幕一区在线| 久久 天天综合| 91传媒视频在线播放| 精品国产免费人成在线观看| 国产精品福利电影一区二区三区四区| 亚洲高清在线视频| 不卡的看片网站| 久久综合久久鬼色中文字| 一区二区三区日韩在线观看| 精品一区二区三区的国产在线播放| 91国在线观看| 欧美激情一区二区三区全黄| 日日欢夜夜爽一区| 91日韩在线专区| 亚洲国产成人在线| 久久国产成人午夜av影院| 色老头久久综合| 欧美激情在线看| 日本欧美肥老太交大片| 日本电影欧美片| 国产精品久久久久一区二区三区| 男女性色大片免费观看一区二区 | 久久综合成人精品亚洲另类欧美 | 久久精品一区二区三区不卡| 日韩有码一区二区三区| 色偷偷88欧美精品久久久| 国产无一区二区| 国产麻豆午夜三级精品| 欧美一区二区在线播放| 亚洲成人久久影院| 99re这里只有精品首页| 亚洲国产精品黑人久久久| 精品一区免费av| 欧美成人bangbros| 丝袜美腿亚洲综合| 欧美美女黄视频| 亚洲电影视频在线| 欧美日韩综合色| 一区二区三区日韩精品| 成人免费视频caoporn| 久久久另类综合| 国产一区二区毛片| 欧美大片在线观看一区二区| 婷婷一区二区三区| 欧美猛男gaygay网站| 亚洲国产精品久久艾草纯爱 | 国产欧美日韩精品a在线观看| 日本va欧美va精品发布| 欧美一区二区三区婷婷月色| 午夜精品爽啪视频| 欧美久久婷婷综合色| 亚洲一二三四在线| 欧美情侣在线播放| 日本网站在线观看一区二区三区| 6080yy午夜一二三区久久| 日韩高清不卡一区二区三区| 欧美精品久久天天躁| 日韩国产高清在线| 精品国产第一区二区三区观看体验| 免费的国产精品| 久久免费美女视频| 国产**成人网毛片九色| 中文字幕一区二区三区在线播放 | 国产亚洲一二三区| 国产91精品欧美| 国产精品乱子久久久久| 91丨porny丨国产| 一区二区高清免费观看影视大全 | 捆绑调教美女网站视频一区| 日韩精品一区二区三区在线观看| 国产高清久久久| 国产精品福利一区二区三区| 欧美性欧美巨大黑白大战| 丝袜国产日韩另类美女| 久久蜜桃一区二区| 99久久精品免费观看| 亚洲午夜av在线| 欧美成人精品3d动漫h| 国产成人免费xxxxxxxx| 国产精品成人免费在线| 欧美日韩免费视频| 久久99国产精品久久99| 中文字幕的久久| 欧美日韩一区 二区 三区 久久精品| 美女尤物国产一区| 国产精品视频yy9299一区| 91成人国产精品| 黄色小说综合网站| 亚洲日本丝袜连裤袜办公室| 欧美一区二区在线免费播放| 成人av片在线观看| 日韩国产一二三区| 国产精品久久久久婷婷| 欧美日韩aaaaaa| 成人性色生活片| 丝袜亚洲精品中文字幕一区| 国产欧美日韩另类一区| 欧美精品黑人性xxxx| kk眼镜猥琐国模调教系列一区二区 | 亚洲黄色小视频| 欧美成人一区二区三区在线观看 | 久久99精品久久久久久动态图| 中文字幕成人av| 欧美一级日韩不卡播放免费| 白白色 亚洲乱淫| 久久99国产精品久久99果冻传媒| 亚洲欧美日韩国产综合在线| 欧美mv日韩mv亚洲| 欧美色老头old∨ideo| 成人开心网精品视频| 美女视频第一区二区三区免费观看网站| 亚洲欧美在线视频观看|