我想创建一个可以显示存储在我的数据库 SQLite 中的名称的方法TextView
这是方法:
public String getCategoryName(int i)
{
String res;
res ="SELECT " + COL_CATEGORY_NAME + "FROM " +
TABLE_CATEGORY + " WHERE " + COL_ID_CATEGORY +" = '" +i +"')";
res=c.toString();
}
在主要活动中:
String name;
name=db.getCategoryName(i);
tv.setText(name);
此方法不起作用:
07-10 10:43:14.768: E/Trace(1367): error opening trace file: No such file or directory (2)