2013-05-03 90 views
3

我需要用3个表创建一个数据库SQLite数据库和我做这个象下面这样:Android的 - 如何创建具有表

public class DatabaseUtils extends SQLiteOpenHelper { 
     private final Context myContext; 
     private SQLiteDatabase DataBase; 

     // Database creation sql statement 
     private static final String CREATE_TABLE_CS = "create table "+ TABLE_CS + "(" + COLUMN_CS + " TEXT NOT NULL, " + COLUMN_CE_CID + " INTEGER NOT NULL, "+ COLUMN_CE_PID +" INTEGER NOT NULL);"; 
     private static final String CREATE_TABLE_SS = "create table "+ TABLE_SS + "(" + COLUMN_SS + " TEXT NOT NULL, " + COLUMN_SUB_CID + " INTEGER NOT NULL, "+ COLUMN_SUB_PID +" INTEGER NOT NULL);"; 
     private static final String CREATE_TABLE_AS = "create table "+ TABLE_AS + "(" + COLUMN_AS + " TEXT NOT NULL, " + COLUMN_CID + " INTEGER NOT NULL, "+ COLUMN_AID +" INTEGER NOT NULL);"; 

     public DatabaseUtils(Context context) { 
     super(context, DATABASE_NAME, null, DATABASE_VERSION); 
     DATABASE_PATH = Environment.getDataDirectory().getAbsolutePath() + "/" +"data/"+ context.getResources().getString(R.string.app_package); 
     this.myContext = context; 
     } 

     @Override 
     public void onCreate(SQLiteDatabase database) { 
     database.execSQL(CREATE_TABLE_CS); 
     database.execSQL(CREATE_TABLE_SS); 
     database.execSQL(CREATE_TABLE_AS); 
     } 
     @Override 
     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 
     Log.w(DatabaseUtils.class.getName(),"Upgrading database from version " + oldVersion + " to "+ newVersion + ", which will destroy all old data"); 
     //db.execSQL("DROP TABLE IF EXISTS " + TABLE_COMMENTS); 
     onCreate(db); 
     } 
} 

,并在我的活动我打电话如下DatabaseUtilsonCreate

DatabaseUtils db = new DatabaseUtils(this); 

但数据库不是用3个表创建的。我究竟做错了什么?顺便说一句,我有正确的所有字符串值。请帮助我如何创建数据库。

+0

?将其设置为更高的值,因为如果值改变,我只能在'onCreate'中创建新表 - 也许你已经在之前执行过类(没有表)。 编辑:你也应该在调用super之前定义你的'DATABASE_PATH' - 因为你应该在那里传递这个数据库的名字(或者/和路径)。 – 2013-05-03 06:37:56

回答

5

我找到了解决方案。小号onCreate()方法:DatabaseUtils '在myActivity

DatabaseUtils db = new DatabaseUtils(this); 

onCreate()如果我实现像下面是从来没有所谓的'。我需要调用在myActivity getWritableDatabase()如下:

DatabaseUtils db = new DatabaseUtils(this); 
db.getWritableDatabase(); 

然后DatabaseUtilsonCreate()将被调用,创建表。

0

私人无效db_ini_create_table(android.database.sqlite.SQLiteDatabase分贝){

String str_sql = "create table [possible_know_persions]   ("+ 
                     "[id]      INTEGER   PRIMARY KEY AUTOINCREMENT    NOT NULL,"+ 
                     "[adate]     DATETIME  DEFAULT (datetime('now','localtime')) NOT NULL,"+ 
                     "[current_userid]   INTEGER   DEFAULT 0 NOT NULL        ,"+ 
                     "[stranger_user_id]   INTEGER   DEFAULT 0 NOT NULL        ,"+ 
                     "[common_friend_count]  INTEGER   DEFAULT 0 NOT NULL        ,"+ 
                     "[common_game_count]  INTEGER   DEFAULT 0 NOT NULL        ,"+ 
                     "[user_account_type]  INTEGER   DEFAULT 0 NOT NULL        ,"+ 
                     "[verify_type]    INTEGER   NULL            "+ 
                    ");";db.execSQL(str_sql); 
    str_sql = "CREATE INDEX [possible_stranger_user_id]  on [possible_know_persions] ("+"[stranger_user_id] asc "+");";db.execSQL(str_sql);  
} 

此仅供参考一个例子,其中是你的`DATABASE_VERSION`number定义