sqlite 句柄-sqlite 基礎(chǔ)教程(3)
分類:?IOS開發(fā)(所有IOS文章)?---sqlite(IOS)?C/C++2012-03-09 13:49?2457人閱讀?評論(2)?收藏?舉報(bào) sqlitecallbackauthorizationfunction數(shù)據(jù)庫transactions要操縱一個(gè)數(shù)據(jù)庫你就得有一個(gè)這個(gè)數(shù)據(jù)庫的句柄(又碰到這個(gè)難以理解的詞了,不過確實(shí)還沒得一個(gè)更好的詞來替代它)。其實(shí)你跟本不需要去在乎這個(gè)詞叫什么,你只要搞清楚他是一個(gè)什么玩意兒。就如同鞋子為什么叫鞋子,仔細(xì)想想確實(shí)也難以理解,不過 清楚他的功能就OK了,不是嗎?
句柄在很多地方我們見到過,最常見的就是文件的句柄,我們要操縱一個(gè)文件,我們就要取得一個(gè)文件的句柄。句柄是個(gè)什么東東呢?其實(shí)很簡單,句柄是一個(gè)東東的描述,他被定義為一個(gè)結(jié)構(gòu)體,這個(gè)結(jié)構(gòu)體可能會(huì)包含要描述的東東的具體信息,比如位置、大小、類型等等。我們有了這個(gè)描述信息我們就能去找到這個(gè)東東,然后操縱它。
一句話:句柄是物體的描述結(jié)構(gòu)體。
我們來看看sqlite的句柄是怎么定義的(不要被嚇到了,代碼直接跳過就好):
[java]?view plaincopyprint? struct?sqlite3?{?? ??sqlite3_vfs?*pVfs;????????????/*?OS?Interface?*/?? ??int?nDb;??????????????????????/*?Number?of?backends?currently?in?use?*/?? ??Db?*aDb;??????????????????????/*?All?backends?*/?? ??int?flags;????????????????????/*?Miscellaneous?flags.?See?below?*/?? ??unsigned?int?openFlags;???????/*?Flags?passed?to?sqlite3_vfs.xOpen()?*/?? ??int?errCode;??????????????????/*?Most?recent?error?code?(SQLITE_*)?*/?? ??int?errMask;??????????????????/*?&?result?codes?with?this?before?returning?*/?? ??u8?autoCommit;????????????????/*?The?auto-commit?flag.?*/?? ??u8?temp_store;????????????????/*?1:?file?2:?memory?0:?default?*/?? ??u8?mallocFailed;??????????????/*?True?if?we?have?seen?a?malloc?failure?*/?? ??u8?dfltLockMode;??????????????/*?Default?locking-mode?for?attached?dbs?*/?? ??signed?char?nextAutovac;??????/*?Autovac?setting?after?VACUUM?if?>=0?*/?? ??u8?suppressErr;???????????????/*?Do?not?issue?error?messages?if?true?*/?? ??u8?vtabOnConflict;????????????/*?Value?to?return?for?s3_vtab_on_conflict()?*/?? ??int?nextPagesize;?????????????/*?Pagesize?after?VACUUM?if?>0?*/?? ??int?nTable;???????????????????/*?Number?of?tables?in?the?database?*/?? ??CollSeq?*pDfltColl;???????????/*?The?default?collating?sequence?(BINARY)?*/?? ??i64?lastRowid;????????????????/*?ROWID?of?most?recent?insert?(see?above)?*/?? ??u32?magic;????????????????????/*?Magic?number?for?detect?library?misuse?*/?? ??int?nChange;??????????????????/*?Value?returned?by?sqlite3_changes()?*/?? ??int?nTotalChange;?????????????/*?Value?returned?by?sqlite3_total_changes()?*/?? ??sqlite3_mutex?*mutex;?????????/*?Connection?mutex?*/?? ??int?aLimit[SQLITE_N_LIMIT];???/*?Limits?*/?? ??struct?sqlite3InitInfo?{??????/*?Information?used?during?initialization?*/?? ????int?iDb;????????????????????/*?When?back?is?being?initialized?*/?? ????int?newTnum;????????????????/*?Rootpage?of?table?being?initialized?*/?? ????u8?busy;????????????????????/*?TRUE?if?currently?initializing?*/?? ????u8?orphanTrigger;???????????/*?Last?statement?is?orphaned?TEMP?trigger?*/?? ??}?init;?? ??int?nExtension;???????????????/*?Number?of?loaded?extensions?*/?? ??void?**aExtension;????????????/*?Array?of?shared?library?handles?*/?? ??struct?Vdbe?*pVdbe;???????????/*?List?of?active?virtual?machines?*/?? ??int?activeVdbeCnt;????????????/*?Number?of?VDBEs?currently?executing?*/?? ??int?writeVdbeCnt;?????????????/*?Number?of?active?VDBEs?that?are?writing?*/?? ??int?vdbeExecCnt;??????????????/*?Number?of?nested?calls?to?VdbeExec()?*/?? ??void?(*xTrace)(void*,const?char*);????????/*?Trace?function?*/?? ??void?*pTraceArg;??????????????????????????/*?Argument?to?the?trace?function?*/?? ??void?(*xProfile)(void*,const?char*,u64);??/*?Profiling?function?*/?? ??void?*pProfileArg;????????????????????????/*?Argument?to?profile?function?*/?? ??void?*pCommitArg;?????????????????/*?Argument?to?xCommitCallback()?*/????? ??int?(*xCommitCallback)(void*);????/*?Invoked?at?every?commit.?*/?? ??void?*pRollbackArg;???????????????/*?Argument?to?xRollbackCallback()?*/????? ??void?(*xRollbackCallback)(void*);?/*?Invoked?at?every?commit.?*/?? ??void?*pUpdateArg;?? ??void?(*xUpdateCallback)(void*,int,?const?char*,const?char*,sqlite_int64);?? #ifndef?SQLITE_OMIT_WAL?? ??int?(*xWalCallback)(void?*,?sqlite3?*,?const?char?*,?int);?? ??void?*pWalArg;?? #endif?? ??void(*xCollNeeded)(void*,sqlite3*,int?eTextRep,const?char*);?? ??void(*xCollNeeded16)(void*,sqlite3*,int?eTextRep,const?void*);?? ??void?*pCollNeededArg;?? ??sqlite3_value?*pErr;??????????/*?Most?recent?error?message?*/?? ??char?*zErrMsg;????????????????/*?Most?recent?error?message?(UTF-8?encoded)?*/?? ??char?*zErrMsg16;??????????????/*?Most?recent?error?message?(UTF-16?encoded)?*/?? ??union?{?? ????volatile?int?isInterrupted;?/*?True?if?sqlite3_interrupt?has?been?called?*/?? ????double?notUsed1;????????????/*?Spacer?*/?? ??}?u1;?? ??Lookaside?lookaside;??????????/*?Lookaside?malloc?configuration?*/?? #ifndef?SQLITE_OMIT_AUTHORIZATION?? ??int?(*xAuth)(void*,int,const?char*,const?char*,const?char*,const?char*);?? ????????????????????????????????/*?Access?authorization?function?*/?? ??void?*pAuthArg;???????????????/*?1st?argument?to?the?access?auth?function?*/?? #endif?? #ifndef?SQLITE_OMIT_PROGRESS_CALLBACK?? ??int?(*xProgress)(void?*);?????/*?The?progress?callback?*/?? ??void?*pProgressArg;???????????/*?Argument?to?the?progress?callback?*/?? ??int?nProgressOps;?????????????/*?Number?of?opcodes?for?progress?callback?*/?? #endif?? #ifndef?SQLITE_OMIT_VIRTUALTABLE?? ??Hash?aModule;?????????????????/*?populated?by?sqlite3_create_module()?*/?? ??VtabCtx?*pVtabCtx;????????????/*?Context?for?active?vtab?connect/create?*/?? ??VTable?**aVTrans;?????????????/*?Virtual?tables?with?open?transactions?*/?? ??int?nVTrans;??????????????????/*?Allocated?size?of?aVTrans?*/?? ??VTable?*pDisconnect;????/*?Disconnect?these?in?next?sqlite3_prepare()?*/?? #endif?? ??FuncDefHash?aFunc;????????????/*?Hash?table?of?connection?functions?*/?? ??Hash?aCollSeq;????????????????/*?All?collating?sequences?*/?? ??BusyHandler?busyHandler;??????/*?Busy?callback?*/?? ??int?busyTimeout;??????????????/*?Busy?handler?timeout,?in?msec?*/?? ??Db?aDbStatic[2];??????????????/*?Static?space?for?the?2?default?backends?*/?? ??Savepoint?*pSavepoint;????????/*?List?of?active?savepoints?*/?? ??int?nSavepoint;???????????????/*?Number?of?non-transaction?savepoints?*/?? ??int?nStatement;???????????????/*?Number?of?nested?statement-transactions??*/?? ??u8?isTransactionSavepoint;????/*?True?if?the?outermost?savepoint?is?a?TS?*/?? ??i64?nDeferredCons;????????????/*?Net?deferred?constraints?this?transaction.?*/?? ??int?*pnBytesFreed;????????????/*?If?not?NULL,?increment?this?in?DbFree()?*/?? ?? #ifdef?SQLITE_ENABLE_UNLOCK_NOTIFY?? ??/*?The?following?variables?are?all?protected?by?the?STATIC_MASTER?? ??**?mutex,?not?by?sqlite3.mutex.?They?are?used?by?code?in?notify.c.?? ??**? ??**?When?X.pUnlockConnection==Y,?that?means?that?X?is?waiting?for?Y?to? ??**?unlock?so?that?it?can?proceed.? ??**? ??**?When?X.pBlockingConnection==Y,?that?means?that?something?that?X?tried? ??**?tried?to?do?recently?failed?with?an?SQLITE_LOCKED?error?due?to?locks? ??**?held?by?Y.? ??*/?? ??sqlite3?*pBlockingConnection;?/*?Connection?that?caused?SQLITE_LOCKED?*/?? ??sqlite3?*pUnlockConnection;???????????/*?Connection?to?watch?for?unlock?*/?? ??void?*pUnlockArg;?????????????????????/*?Argument?to?xUnlockNotify?*/?? ??void?(*xUnlockNotify)(void?**,?int);??/*?Unlock?notify?callback?*/?? ??sqlite3?*pNextBlocked;????????/*?Next?in?list?of?all?blocked?connections?*/?? #endif?? };??
[java]?view plaincopyprint? typedef?struct?sqlite3?sqlite3;//??
是不是被嚇到了,沒關(guān)系,這段代碼本來就是我貼出來嚇唬你的,我也沒認(rèn)真研究過這個(gè)代碼,也不想去研究,除非哪天有人出高價(jià)請我去研究,我現(xiàn)在只知道怎么用就好了。
這個(gè) sqlite3 結(jié)構(gòu)體就是被用來描述我們磁盤里的數(shù)據(jù)庫文件的,有了這個(gè)描述符我們就可以對這個(gè)數(shù)據(jù)庫進(jìn)行各種操作了,操作的具體內(nèi)情我們不必要了解,我們只需要知道怎么去調(diào)用API就好了,當(dāng)然有時(shí)候還是要了解一點(diǎn)點(diǎn)內(nèi)情的,這個(gè)以后碰到再講。
我用這么長的話加一大段嚇人的代碼只有一個(gè)目的:不要對句柄有恐懼感。
好了,開始我們的正題,sqlite 里面你要操縱數(shù)據(jù)庫我們先得創(chuàng)建一個(gè)句柄,然后后面所有對數(shù)據(jù)庫得操作都會(huì)用到這個(gè)句柄。
[java]?view
plaincopyprint?
sqlite3*?pdb;??
就 這么簡單,這樣一個(gè)ssqlite的句柄我們就創(chuàng)建完成了,我們以后針對數(shù)據(jù)庫的操作都離不開它了。你可能還有疑問,我也知道你的 疑問是什么,請看下回分解。