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

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

?? sqlite3.h

?? SQlite 的使用 讀庫(kù) 寫(xiě)庫(kù)
?? 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.198 2007/01/26 00:51:44 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 __cplusplus
extern "C" {
#endif

/*
** The version of the SQLite library.
*/
#ifdef SQLITE_VERSION
# undef SQLITE_VERSION
#endif
#define SQLITE_VERSION         "3.3.13"

/*
** 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 3003013

/*
** 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 1st 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.
*/

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久国产一区二区三区四区小说| 亚洲色图在线播放| 99久久精品情趣| 理论片日本一区| 亚洲人成网站在线| 亚洲精品一区二区三区蜜桃下载| 色激情天天射综合网| 国产成人在线网站| 日韩福利视频导航| 亚洲免费在线电影| 久久久精品中文字幕麻豆发布| 欧美日本在线播放| 一本大道久久a久久综合| 精品综合久久久久久8888| 亚洲一区二区在线播放相泽 | 国产精品18久久久久久久久| 一区二区不卡在线视频 午夜欧美不卡在 | 国产精品成人免费| 久久综合五月天婷婷伊人| 精品视频在线看| 色综合视频一区二区三区高清| 韩国av一区二区| 乱中年女人伦av一区二区| 艳妇臀荡乳欲伦亚洲一区| 国产精品色哟哟网站| 久久久蜜桃精品| 亚洲精品一线二线三线| 日韩免费在线观看| 欧美一区二区三区免费大片| 欧美视频一区二区三区在线观看| 99久久婷婷国产综合精品| 国产成人午夜精品影院观看视频 | 亚洲精品乱码久久久久久| 国产精品传媒入口麻豆| 日本一区二区三区视频视频| 精品国产成人系列| 精品国产sm最大网站免费看| 欧美一卡二卡在线观看| 日韩一级欧美一级| 精品久久一区二区三区| 26uuu亚洲综合色欧美| 337p日本欧洲亚洲大胆精品| 亚洲精品一区二区在线观看| 26uuu亚洲婷婷狠狠天堂| 欧美精品一区二区三区久久久| 精品1区2区在线观看| 久久美女艺术照精彩视频福利播放 | 国产精品国产三级国产有无不卡| 中文字幕乱码一区二区免费| 中文av一区特黄| 国产精品美女久久久久久久久久久| 日本一区二区免费在线| 国产精品欧美一级免费| 亚洲欧美国产高清| 五月天婷婷综合| 激情另类小说区图片区视频区| 激情五月婷婷综合网| 国v精品久久久网| 99久久国产综合精品女不卡| 97se狠狠狠综合亚洲狠狠| 色偷偷成人一区二区三区91| 在线看日韩精品电影| 91麻豆精品91久久久久同性| 日韩欧美亚洲另类制服综合在线| 欧美精品一区二区在线播放| 国产精品妹子av| 亚洲第一综合色| 国内精品免费在线观看| 成人亚洲一区二区一| 日本高清免费不卡视频| 9191久久久久久久久久久| 久久尤物电影视频在线观看| 国产精品情趣视频| 午夜电影久久久| 国产精品91xxx| 91黄色免费观看| 精品日韩成人av| 国产精品福利av| 日本91福利区| 91亚洲精品一区二区乱码| 欧美日韩一区中文字幕| 2021中文字幕一区亚洲| 综合久久给合久久狠狠狠97色| 午夜精品在线视频一区| 国产精品91xxx| 欧美日韩五月天| 国产欧美日韩另类视频免费观看| 亚洲男人的天堂一区二区| 久久精品国产一区二区三区免费看 | 国产亚洲欧美色| 亚洲国产毛片aaaaa无费看| 精品一区二区三区在线观看国产| 一本色道久久综合狠狠躁的推荐| 日韩天堂在线观看| 亚洲精品老司机| 国产精品一区二区久激情瑜伽| 色婷婷亚洲一区二区三区| 精品国产一区二区三区久久久蜜月 | 一区二区三区91| 国产成人免费在线视频| 91精品视频网| 亚洲日本乱码在线观看| 韩国毛片一区二区三区| 欧美猛男超大videosgay| 中文字幕一区二区三区精华液| 麻豆国产91在线播放| 91一区二区三区在线播放| 久久久久久久电影| 日韩精品乱码免费| 欧美性猛交xxxx乱大交退制版 | 中文字幕不卡在线观看| 日韩成人dvd| 欧美在线小视频| 国产欧美日韩综合| 国产综合久久久久久久久久久久| 欧美三片在线视频观看| 国产精品国产三级国产aⅴ无密码| 另类小说欧美激情| 欧美区视频在线观看| 一区二区三区在线观看欧美| 国产91精品久久久久久久网曝门 | 亚洲欧美日韩久久| 国产精品69毛片高清亚洲| 日韩欧美国产综合| 日韩在线一二三区| 欧美日韩高清影院| 亚洲综合在线视频| 在线视频欧美区| 免费成人av资源网| 欧美男女性生活在线直播观看| 亚洲一区影音先锋| 91麻豆福利精品推荐| 亚洲欧美日本韩国| 色综合久久精品| 亚洲男人的天堂在线观看| 99r国产精品| 中文字幕制服丝袜一区二区三区| 成人动漫一区二区三区| 国产精品日日摸夜夜摸av| 成人v精品蜜桃久久一区| 国产精品久久夜| 成人av网站在线| 国产精品久久久久久户外露出 | 亚洲成人av一区二区| 欧美午夜在线一二页| 亚洲网友自拍偷拍| 4438成人网| 免费国产亚洲视频| 欧美精品一区二区三区久久久| 国产伦理精品不卡| 亚洲国产成人一区二区三区| av成人免费在线观看| 一区二区三区在线视频播放| 欧美日韩综合一区| 日本视频在线一区| 精品少妇一区二区三区视频免付费| 国产麻豆视频精品| 国产精品美女久久久久高潮| 91在线看国产| 性久久久久久久久久久久| 欧美一区二区三区在| 国产精品亚洲午夜一区二区三区 | 欧美tk丨vk视频| 国产精品亚洲成人| 亚洲欧美经典视频| 91精品国产美女浴室洗澡无遮挡| 精品一区二区在线免费观看| 中文字幕欧美日韩一区| 日本精品一区二区三区高清 | 麻豆一区二区三| 欧美极品另类videosde| 91搞黄在线观看| 久色婷婷小香蕉久久| 国产精品久久久99| 欧美日韩国产高清一区二区| 极品尤物av久久免费看| 亚洲天堂精品视频| 91精品麻豆日日躁夜夜躁| 丁香一区二区三区| 亚洲国产综合色| 久久日韩精品一区二区五区| 97超碰欧美中文字幕| 久久国内精品自在自线400部| 欧美国产精品一区二区三区| 欧美三级视频在线| 国产成人三级在线观看| 亚洲国产精品久久艾草纯爱 | 在线观看视频一区二区| 国产一区免费电影| 一区二区在线观看av| 久久综合五月天婷婷伊人| 91福利小视频| 成人夜色视频网站在线观看| 日韩精品一卡二卡三卡四卡无卡| 中文字幕精品—区二区四季| 91精品国产综合久久福利软件 | 国产露脸91国语对白| 亚洲一区在线播放| 国产精品人人做人人爽人人添| 欧美一区二区三区啪啪|