【发布时间】:2014-10-20 15:30:39
【问题描述】:
我已经多次阅读 buckys 教程,但仍然找不到问题所在。我从错误消息中截取了屏幕截图,但无法在此处发布。有人可以帮我吗,因为我已经被这个问题困扰了好几天了。
错误信息是:
android.database.sqlite.SQLiteException 靠近“CREATE TABLE peopleTable ":syntax error (code1):, 编译时:CREATE TABLE peopleTable (_id INTEGER PRIMARY KEY AUTOINCREMENT,persons_name TEXT NOT NULL person_hotness TEXT NOT NULL);
这里是 HotOrNot 类的代码:
package com.peltho.momskoll;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
public class HotOrNot {
public static final String KEY_ROWID = "_id";
public static final String KEY_NAME = "persons_name";
public static final String KEY_HOTNESS = "persons_hotness";
private static final String DATABASE_NAME = "HotOrNotdb";
private static final String DATABASE_TABLE = "peopleTable";
private static final int DATABASE_VERSION = 1;
private DbHelper ourHelper;
private final Context ourContext;
private SQLiteDatabase ourDatabase;
private static class DbHelper extends SQLiteOpenHelper {
public DbHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(SQLiteDatabase db) {
// denna klasss anv nds endast f rsta g ngen databasen tas i
// anv ndning
db.execSQL("CREATE TABLE " + DATABASE_TABLE + " (" + KEY_ROWID
+ " INTEGER PRIMARY KEY AUTOINCREMENT, " + KEY_NAME
+ " TEXT NOT NULL, " + KEY_HOTNESS + " TEXT NOT NULL);");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
db.execSQL("DROP TABLE IF EXISTS " + DATABASE_TABLE);
onCreate(db);
}
}
public HotOrNot(Context c) {
ourContext = c;
}
public HotOrNot open() throws SQLException {
ourHelper = new DbHelper(ourContext);
ourDatabase = ourHelper.getWritableDatabase();
return this;
}
public void close() {
ourHelper.close();
}
public long createEntry(String name, String hotness) {
// TODO Auto-generated method stub
ContentValues cv = new ContentValues();
cv.put(KEY_NAME, name);
cv.put(KEY_HOTNESS, hotness);
// cv.put(KEY_VAT, vat);
// cv.put(KEY_DATE, date);
return ourDatabase.insert(DATABASE_TABLE, null, cv);
}
public String getData() {
// TODO Auto-generated method stub
String[] columns = new String[] { KEY_ROWID, KEY_NAME, KEY_HOTNESS };
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, null, null, null,
null, null);
String result = "";
int iRow = c.getColumnIndex(KEY_ROWID);
int iName = c.getColumnIndex(KEY_NAME);
int iHotness = c.getColumnIndex(KEY_HOTNESS);
for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext()) {
result = result + c.getString(iRow) + " " + c.getString(iName)
+ " " + c.getString(iHotness) + "\n";
}
return result;
}
}
我在 SQLiteExempel 中的代码
package com.peltho.momskoll;
import android.app.Activity;
import android.app.Dialog;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class SQLiteExample extends Activity implements OnClickListener {
Button sqlUpdate, sqlView;
EditText sqlName, sqlHotness;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.sqliteexample);
sqlUpdate = (Button) findViewById(R.id.bSQLUpdate);
sqlView = (Button) findViewById(R.id.bSQLOpenView);
sqlName = (EditText) findViewById(R.id.etSQLName);
sqlHotness = (EditText) findViewById(R.id.etSQLHotness);
// sqlVat = (EditText) findViewById(R.id.etSQLVAT);
// sqlDate = (EditText) findViewById(R.id.etSQLDate);
sqlView.setOnClickListener(this);
sqlUpdate.setOnClickListener(this);
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()) {
case R.id.bSQLUpdate:
boolean didItWork = true;
try {
String name = sqlName.getText().toString();
String hotness = sqlHotness.getText().toString();
// String va = sqlVat.getText().toString();
// String date = sqlDate.getText().toString();
// sum = Double.parseDouble(su);
// vat = Double.parseDouble(va);
HotOrNot entry = new HotOrNot(SQLiteExample.this);
entry.open();
entry.createEntry(name, hotness);
entry.close();
} catch (Exception e) {
//It gives me this error message
didItWork = false;
String error = e.toString();
Dialog d = new Dialog(this);
d.setTitle("NOO");
TextView tv = new TextView(this);
tv.setText(error);
d.setContentView(tv);
d.show();
} finally {
//It is supposed to do thisif it works
if (didItWork) {
Dialog d = new Dialog(this);
d.setTitle("Jeeep");
TextView tv = new TextView(this);
tv.setText("Lyckades");
d.setContentView(tv);
d.show();
}
}
break;
case R.id.bSQLOpenView:
Intent i = new Intent("com.peltho.momskoll.SQLVIEW");
startActivity(i);
break;
}
}
}
【问题讨论】:
-
SQLiteException 的其余部分是怎么说的?
-
实际上,除了在 Eclipse 日志中它说 (1) 在“CREATE TABLE people table”附近之外,它什么也没说:语法错误
-
我明白了。这是空间。有趣,因为我认为在格式化所有内容时它会修复它,但我必须手动完成。而且我写错误信息的时候逗号忘记了,不在代码里。
-
-1,错误与代码不符。
标签: java android eclipse sqlite