SQLite 3617

SQLite 3617
  • Downloads: 510
  • Requirements:
  • Size:
  • Licence:
  • Version: SQLite
  • Added At: 2009-11-08
  • Publisher Site:



SQLite 3617

Share

sqlite is a small c library that implements a self-contained, embeddable, zero-configuration sql database engine.the sqlite distribution comes with a standalone command-line access program (sqlite) that can be used to administer an sqlite database and which serves as an example of how to use the sqlite library.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.write programs that use sqlitebelow 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.#!/usr/bin/tclshif {$argc!=2} { puts stderr "usage: %s database sql-statement" exit 1}load /usr/lib/tclsqlite3.so sqlite3sqlite3 db [lindex $argv 0]db eval [lindex $argv 1] x { foreach v $x(*) { puts "$v = $x($v)" } puts ""}db close
sqlite is a small c library that implements a self-contained, embeddable, zero-configuration sql database engine.the sqlite distribution comes with a standalone command-line access program (sqlite) that can be used to administer an sqlite database and which serves as an example of how to use the sqlite library.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.write programs that use sqlitebelow 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.#!/usr/bin/tclshif {$argc!=2} { puts stderr "usage: %s database sql-statement" exit 1}load /usr/lib/tclsqlite3.so sqlite3sqlite3 db [lindex $argv 0]db eval [lindex $argv 1] x { foreach v $x(*) { puts "$v = $x($v)" } puts ""}db close
�. you can free download SQLite 3617 now.
Soft85 only provide legal software, please help us keeping pur site legal, if you think this page is violating copyrights please let us know by clicking here Here






comments powered by Disqus

Download SQLite 3617 _FREE_