我在 sq-lite 中创建了这个表
String TABLE_CREATE_QUERY =
"create table contacts(id integer primary key autoincrement,name text not null, fname text not null, regid integer unique not null,year text not null, email text not null, phone text not null, address text not null)";
并且有一种按名称搜索记录的方法
public Cursor searchByName(String name)
{
return db.query(DATABASE_TABLE, new String[] {"id","name", "phone"},
"name="+name, null, null, null, null);
}
现在当我想像这样搜索 uzair 的记录时,我得到了一个错误。
open(); //open database;
Cursor c=searchByName("uzair");
close(); //close database.
任何帮助将不胜感激...