0

附加或连接 SQLite s3db 文件以连接 android 应用程序需要编写什么代码?代码必须放在哪里?

4

1 回答 1

1

在您的主要活动中设置您的数据库。

 private void setupDatabase() 
         {
                Dbhelper myDbHelper = new Dbhelper(getApplicationContext());
                myDbHelper = new Dbhelper(this);

                try {

                    myDbHelper.createDataBase();

                } catch (IOException ioe) {

                    throw new Error("Unable to create database");

                }

            }
于 2012-05-24T07:10:45.907 回答