易截截图软件、单文件、免安装、纯绿色、仅160KB

sqlite查询数据库中存在的所有表

from within a C/C++ program (or a script using Tcl/Ruby/Perl/Python
bindings) you can get access to table and index names by doing a SELECT
on a special table named "SQLITE_MASTER
". Every SQLite database has an SQLITE_MASTER table that defines the schema for the database.
SQL code
SELECT
name
from
sqlite_master
WHERE
type
=
'
table
'
ORDER

BY
name;


相关文档:

Unity3d 中文输入输出 查询sqlite数据库

CnGuiDB.js
var db : dbAccess;
public var mskin : GUISkin;
private var mstring : String;
var inputStr;
function Start(){
inputStr = "1";
}
function search(mid)
{
db = new dbAccess();
db.OpenDB("db1.db");
var tableName = "myTable";
// table name, I want to return everyo ......

SQLite 3 一些基本使用

使用工具: 
      SQLite Expert SQLite数据库管理工具,非常好用,类似我之前介绍的EMS SQL Manager 2007 for MySQL
      System.Data.SQLite SQLite For ADO.NET驱动,类似我之前介绍的MySql.Data.dll
这2个工具都包括了SQLite的引擎
1、从http://www.s ......

SQLite 3 杂记

1、如何得到最后插入项的自动增长ID值? 对应的C#代码段如下:

using (SQLiteConnection cn = new SQLiteConnection (“data source = Test.db”))
{
      cn.Open ();

      SQLiteCommand cmd = new SQLiteCommand ......

2010年SQLite学习笔记之二


2010年SQLite学习笔记之二
一.建立数据库
sqlite3.exe test.db
 
二.双击sqlite-3_6_16目录下的程序sqlite3.exe,即可运行
三.退出
.exit
或者
.quit
四.SQLite支持如下5种数据类型
1.NULL:空值。
2.INTEGER:带符号的整型,具体取决有存入数字的范围大小。
3.REAL:浮点数字,存储为8-byte IEEE浮点数 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号