第十二节--SQLite的基本操作的应用(一)

前端之家收集整理的这篇文章主要介绍了第十二节--SQLite的基本操作的应用(一)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

sqliteDatabase:

java.lang.Object
android.database.sqlite.SQLiteClosable
android.database.sqlite.sqliteDatabase

原意:

Exposes methods to manage a sqlite database.

sqliteDatabase has methods to create,delete,execute sql commands,and perform other common database management tasks.

See the Notepad sample application in the SDK for an example of creating and managing a database.

Database names must be unique within an application,not across all applications.

译文:

展示一些方法来管理sqlite数据库
sqliteDatabase方法来创建删除,执行sql命令,并执行其他常见的数据库管理任务。
查看SDK中的一个创建和管理数据库的例子
数据库名称必须是唯一的一个应用程序,而不是跨所有应用程序。


代码示例:


显示效果

原文链接:/sqlite/202711.html

猜你在找的Sqlite相关文章