iOS App使用SQLite之句柄的定义及数据库的基本操作

2020-01-15 15:27:20王振洲


const char* getFilePath(){ 
  return [[NSString stringWithFormat:@"%@/Documents/db",NSHomeDirectory() ] UTF8String]; 
      //不好意思这里用到了与IOS相关的一点东西,不过这个也没办法,除非我写成绝对路径,但是那样是行不通的 
      // 不过也没关系,你移植到别处肯定也是要改路径的咯,所以移植的时候改一下就好了 
} 

还有一点就是返回值,返回值我们用来判断是否执行成功。sqlite 中帮我们定义了一系列的宏,用来作为返回值:


#define SQLITE_OK      0  /* Successful result */ 
/* beginning-of-error-codes */ 
#define SQLITE_ERROR    1  /* SQL error or missing database */ 
#define SQLITE_INTERNAL   2  /* 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  /* Unknown opcode in sqlite3_file_control() */ 
#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  /* String or BLOB exceeds size limit */ 
#define SQLITE_CONSTRAINT 19  /* Abort due to constraint 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 */ 

有了这些我们就可以更加方便地调试我们的代码了。
好了,进入正题,上面这个函数就是在数据库存在的情况下打开数据库,不存在的情况下创建数据库,数据库的名字可以随便乱取,只要是ASCII字符就好了,因为sqlite数据库本来就是一个ASCII文件(所以它的安全性还是不大行的,不过作为本地数据库没啥问题)。