SQLite In 5 Minutes Or Less

SQLite In 5 Minutes Or Less,第1张

概述  Here is what you do to start experimenting with SQLite without having to do a lot of tedious reading and configuration: Download The Code Get a copy of the prebuilt binaries for your machine, or get

Here is what you do to start experimenting with sqlite without having to do a lot of tedious reading and configuration:

Download The Code

Get a copy of the prebuilt binarIEs for your machine,or get a copy of the sources and compile them yourself. Visit the download page for more information.

Create A New Database

At a shell or DOS prompt,enter: "sqlite3 test.db". This will create a new database named "test.db". (You can use a different name if you like.)

Enter sql commands at the prompt to create and populate the new database.

Additional documentation is available here

Write Programs That Use sqlite

Below is a simple TCL program that demonstrates how to use the TCL interface to sqlite. The program executes the sql statements given as the second argument on the database defined by the first argument. The commands to watch for are the sqlite3 command on line 7 which opens an sqlite database and creates a new TCL command named "db" to access that database,the invocation of the db command on line 8 to execute sql commands against the database,and the closing of the database connection on the last line of the script.

01  #!/usr/bin/tclsh02  if {$argc!=2} {03    puts stderr "Usage: %s DATABASE sql-STATEMENT"04    exit 105  }06  load /usr/lib/tclsqlite3.so sqlite307  sqlite3 db [lindex $argv 0]08  db eval [lindex $argv 1] x {09    foreach v $x(*) {10      puts "$v = $x($v)"11    }12    puts ""13  }14  db close

Below is a simple C program that demonstrates how to use the C/C++ interface to sqlite. The name of a database is given by the first argument and the second argument is one or more sql statements to execute against the database. The function calls to pay attention to here are the call to sqlite3_open() on line 22 which opens the database,sqlite3_exec() on line 28 that executes sql commands against the database,and sqlite3_close() on line 33 that closes the database connection.

See also the Introduction To The SQLite C/C++ Interface for an introductory overvIEw and roadmap to the doZens of sqlite interface functions.

01  #include <stdio.h>02  #include <sqlite3.h>03  04  static int callback(voID *NotUsed,int argc,char **argv,char **azColname){05    int i;06    for(i=0; i<argc; i++){07      printf("%s = %s\n",azColname[i],argv[i] ? argv[i] : "NulL");08    }09    printf("\n");10    return 0;11  }12  13  int main(int argc,char **argv){14    sqlite3 *db;15    char *zErrMsg = 0;16    int rc;17  18    if( argc!=3 ){19      fprintf(stderr,"Usage: %s DATABASE sql-STATEMENT\n",argv[0]);20      exit(1);21    }22    rc = sqlite3_open(argv[1],&db);23    if( rc ){24      fprintf(stderr,"Can't open database: %s\n",sqlite3_errmsg(db));25      sqlite3_close(db);26      exit(1);27    }28    rc = sqlite3_exec(db,argv[2],callback,&zErrMsg);29    if( rc!=sqlITE_OK ){30      fprintf(stderr,"sql error: %s\n",zErrMsg);31      sqlite3_free(zErrMsg);32    }33    sqlite3_close(db);34    return 0;35  }
更多资料见 http://www.sqlite.org/
总结

以上是内存溢出为你收集整理的SQLite In 5 Minutes Or Less全部内容,希望文章能够帮你解决SQLite In 5 Minutes Or Less所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/sjk/1176771.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存