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