Android的表创建失败(近"自动增量":语法错误)?增量、语法错误、Android、QUOT

2023-09-12 08:09:07 作者:卿姒

 公共静态最后弦乐MYDATABASE_NAME =MY_DATABASE;
 公共静态最后弦乐MYDATABASE_TABLE =MY_TABLE;
 公共静态最后弦乐MYDATABASE_TABLE2 =MY_TABLE2;
 公共静态最终诠释MYDATABASE_VERSION = 1;
 公共静态最后弦乐KEY_ID =_id;
 公共静态最后弦乐KEY_ID2 =_id2;
 公共静态最后弦乐KEY_CONTENT1 =内容1;
 公共静态最后弦乐KEY_CONTENT2 =内容2;
 公共静态最后弦乐KEY_CONTENT3 =Content3;

 //创建表MY_DATABASE(ID整数主键,内容文字NOT NULL);
 私有静态最后弦乐SCRIPT_CREATE_DATABASE =创建表+ MYDATABASE_TABLE +(
                                                        + KEY_ID +整数主键自动增量,
                                                        + KEY_CONTENT1 +文字NOT NULL);;

 私有静态最后弦乐SCRIPT_CREATE_DATABASE2 =创建表+ MYDATABASE_TABLE2 +(
                                                        + KEY_ID2 +整数自动递增,
                                                        + KEY_CONTENT2 +文字不为空,
                                                        + KEY_CONTENT3 +文字不为空,
                                                        +外键(+ KEY_ID2 +)参考+ MYDATABASE_TABLE +(+ KEY_ID +));;
 

我无法找出什么提供了以下错误,请帮我谢谢你。

  

09-29 13:41:19.760:ERROR /数据库(334):失败1(近   在0x218df0时preparing创建语法错误):自动增量   表MY_TABLE2(_id2整数自动增量,内容2文本不为空,   Content3文字不为空,外键(_id2)参考MY_TABLE   (_id));

     

09-29 13:41:19.770:DEBUG / AndroidRuntime(334):关闭虚拟机

     

09-29 13:41:19.770:WARN / dalvikvm(334):主题ID = 1:螺纹退出   与未捕获的异常(组= 0x4001d800)

     

09-29 13:41:19.791:ERROR / AndroidRuntime(334):致命异常:主要

     

09-29 13:41:19.791:ERROR / AndroidRuntime(334):   java.lang.RuntimeException的:无法启动的活动   ComponentInfo {sep.com/sep.com.SepActivity}:   android.database.sqlite.SQLiteException:近自动增量:语法   错误:创建表MY_TABLE2(_id2整数自动增量,内容2   文字不为空,Content3文字不为空,外键(_id2)参考   MY_TABLE(_id));

解决方案

在短:在SQLite的声明为INTEGER PRIMARY KEY将自动增量列没有自动增量的关键字,这就是为什么你得到一个错误。

android动画 android动画详解 CSDN

您可以了解更多关于 SQLite的常见问题解答。

编辑:只是写整数主键这就够了。 的SQLite 将自动增加你的 IDS

EDIT2:您 onUpgrade()方法应该是这样的:

 公共无效onUpgrade(SQLiteDatabase分贝,INT oldVersion,诠释静态网页){
        如果(动态网页> oldVersion){
            Log.w(MyAppTag+ oldVersion +到从版本更新数据库
                    +动态网页+.Existing数据都将丢失。);
            db.execSQL(DROP TABLE IF EXISTS+ MY_TABLE);
            db.execSQL(DROP TABLE IF EXISTS+ MY_TABLE2);
            的onCreate(DB);
        }
 

 public static final String MYDATABASE_NAME = "MY_DATABASE";
 public static final String MYDATABASE_TABLE = "MY_TABLE";
 public static final String MYDATABASE_TABLE2 = "MY_TABLE2";
 public static final int MYDATABASE_VERSION = 1;
 public static final String KEY_ID = "_id";
 public static final String KEY_ID2 = "_id2";
 public static final String KEY_CONTENT1 = "Content1";
 public static final String KEY_CONTENT2 = "Content2";
 public static final String KEY_CONTENT3 = "Content3";

 //create table MY_DATABASE (ID integer primary key, Content text not null);
 private static final String SCRIPT_CREATE_DATABASE = "create table " + MYDATABASE_TABLE + " (" 
                                                        +KEY_ID + " integer primary key autoincrement, " 
                                                        + KEY_CONTENT1 + " text not null);";

 private static final String SCRIPT_CREATE_DATABASE2 = "create table " + MYDATABASE_TABLE2 + " (" 
                                                        + KEY_ID2 + " integer autoincrement, " 
                                                        + KEY_CONTENT2 + " text not null, " 
                                                        + KEY_CONTENT3 + " text not null, "
                                                        + " FOREIGN KEY ("+KEY_ID2+") REFERENCES "+MYDATABASE_TABLE+" ("+KEY_ID+"));";

I can not find out what gives the following error, please help me out thank you.

09-29 13:41:19.760: ERROR/Database(334): Failure 1 (near "autoincrement": syntax error) on 0x218df0 when preparing 'create table MY_TABLE2 (_id2 integer autoincrement, Content2 text not null, Content3 text not null, FOREIGN KEY (_id2) REFERENCES MY_TABLE (_id));'.

09-29 13:41:19.770: DEBUG/AndroidRuntime(334): Shutting down VM

09-29 13:41:19.770: WARN/dalvikvm(334): threadid=1: thread exiting with uncaught exception (group=0x4001d800)

09-29 13:41:19.791: ERROR/AndroidRuntime(334): FATAL EXCEPTION: main

09-29 13:41:19.791: ERROR/AndroidRuntime(334): java.lang.RuntimeException: Unable to start activity ComponentInfo{sep.com/sep.com.SepActivity}: android.database.sqlite.SQLiteException: near "autoincrement": syntax error: create table MY_TABLE2 (_id2 integer autoincrement, Content2 text not null, Content3 text not null, FOREIGN KEY (_id2) REFERENCES MY_TABLE (_id));

解决方案

In short: In SQLite a column declared INTEGER PRIMARY KEY will autoincrement. There is no autoincrement keyword in SQLite, that is why you are getting an error.

You can find out more on SQLite FAQ.

EDIT: just writing integer primary key it is enough. SQLite will automatically increment your ids.

EDIT2: Your onUpgrade() method should look like this :

  public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        if (newVersion > oldVersion) {
            Log.w("MyAppTag","Updating database from version " + oldVersion + " to "
                    + newVersion + " .Existing data will be lost.");
            db.execSQL("DROP TABLE IF EXISTS " + MY_TABLE);
            db.execSQL("DROP TABLE IF EXISTS " + MY_TABLE2);
            onCreate(db);
        }