English 中文(简体)
开始于Kalk
原标题:Starting with SQLite
  • 时间:2011-11-22 19:33:45
  •  标签:
  • sqlite

刚刚下载了3070900KQalgamation,因为我希望在Kumite数据库中开发一些经验。

我设法将其从箱子中删除。 到现在为止。 我如何从发动机开始! 我应怎样才能开始,以便了解某些与“四方”一揽子计划有关的实践情况? 不能在网上找到许多基本障碍。

问题回答

电池是嵌入式数据库,没有“引擎”per se。 它作为单一可装的图书馆(窗户上的DLL)实施。 你不需要C来文方法,而这正是你似乎下载的。

本组织本身没有用户接口,也没有任何途径可以直接与用户互动。 但是,大多数(所有?)平台都有一个非常简单的指挥线接口方案,称为Sqlite3(视窗)。 通过这一方案,你可以建立数据库并与之合作。 然而,你可能发现,更容易利用网上提供的许多全球倡议管理人方案之一。

To program against the SQLite database you will need to choose a programming language and make sure you have the correct SQLite interface libraries.





相关问题
sqlite3 is chopping/cutting/truncating my text columns

I have values being cut off and would like to display the full values. Sqlite3 -column -header locations.dbs " select n.namelist, f.state, t.state from names n left join locations l on l.id = n.id ...

Entity Framework with File-Based Database

I am in the process of developing a desktop application that needs a database. The application is currently targeted to SQL Express 2005 and works wonderfully. However, I m not crazy about having ...

Improve INSERT-per-second performance of SQLite

Optimizing SQLite is tricky. Bulk-insert performance of a C application can vary from 85 inserts per second to over 96,000 inserts per second! Background: We are using SQLite as part of a desktop ...

Metadata for columns in SQLite v2.8 (PHP5)

How can I get metadata / constraints (primary key and "null allowed" in particular) for each column in a SQLite v2.8 table using PHP5 (like mysql_fetch_field for MySql)? sqlite_fetch_column_types (OO:...

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签