- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
单击“插入”按钮时发现以下错误
Error Found :android.database.sqlite.SQLiteException: no such column : id (code 1) while compiling : select id,student_name, student_rollno FROM studentTable WHERE idrh
发现错误:android.database.sqlite.SQLiteException:编译时没有这样的列:id(代码 1):从 studentTable WHERE idrh 选择 id,student_name,student_rollno
注意:这里rh是我输入的id
编码
数据库助手.java
package com.example.a;
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.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
public class DbActivity {
public static final String KEY_ID = "id";
public static final String KEY_NAME = "student_name";
public static final String KEY_ROLLNO = "student_rollno";
private static final String DATABASE_NAME= "Studentdb";
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_TABLE = "studentTable";
private DbHelper ourHelper;
private final Context ourContext;
private SQLiteDatabase ourDatabase;
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) {
// TODO Auto-generated method stub
/* db.execSQL("CREATE TABLE IF NOT EXISTS " + DATABASE_TABLE + " ( " +
KEY_ID + " TEXT PRIMARY KEY , " +
KEY_NAME + " TEXT NOT NULL , " +
KEY_ROLLNO + " TEXT NOT NULL );"
*/
db.execSQL("CREATE TABLE if not exists database_table (id TEXT PRIMARY KEY ,"
+ "student_name"
+ " TEXT ,"
+ "student_rollno"
+ " TEXT);");
}
@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 DbActivity(Context c) {
ourContext = c;
}
public DbActivity open() throws SQLException{
ourHelper = new DbHelper(ourContext);
ourDatabase = ourHelper.getWritableDatabase();
return this;
}
public void close() {
ourHelper.close();
}
public void createEntry(String id, String name, String rollno) {
// TODO Auto-generated method stub
ContentValues cv = new ContentValues();
cv.put(KEY_ID, id);
cv.put(KEY_NAME, name);
cv.put(KEY_ROLLNO, rollno);
ourDatabase.insert(DATABASE_TABLE, null, cv);
}
public String getData() throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
String result = "";
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, null, null, null, null,null);
int id = c.getColumnIndex(KEY_ID);
int name = c.getColumnIndex(KEY_NAME);
int rollno = c.getColumnIndex(KEY_ROLLNO);
for(c.moveToFirst();!c.isAfterLast();c.moveToNext());
{
result = result + c.getColumnName(id) + "" + c.getColumnName(name) + "" + c.getColumnName(rollno) + "/n";
}
return result;
}
public String getName(String s) throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, KEY_ID + "" + s, null, null, null, null);
if(c!=null)
{
c.moveToFirst();
String name = c.getString(1);
return name;
}
return null;
}
public String getRollno(String s) throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, KEY_ID + "" + s, null, null, null, null);
if(c!=null)
{
c.moveToFirst();
String rollno = c.getString(2);
return rollno;
}
return null;
}
public void updateEntry (String id1, String name, String rollno) throws SQLException {
ContentValues cvUpdate = new ContentValues();
cvUpdate.put(KEY_ID, id1);
cvUpdate.put(KEY_NAME, name);
cvUpdate.put(KEY_ROLLNO, rollno);
ourDatabase.update(DATABASE_TABLE, cvUpdate, KEY_ID + "=" + id1 , null);
}
public void deleteEntry(String id) throws SQLException {
ourDatabase.delete(DATABASE_TABLE, KEY_ID + "=" + id , null);
}
主 Activity .java
package com.example.a;
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.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
public class DbActivity {
public static final String KEY_ID = "id";
public static final String KEY_NAME = "student_name";
public static final String KEY_ROLLNO = "student_rollno";
private static final String DATABASE_NAME= "Studentdb";
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_TABLE = "studentTable";
private DbHelper ourHelper;
private final Context ourContext;
private SQLiteDatabase ourDatabase;
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) {
// TODO Auto-generated method stub
/* db.execSQL("CREATE TABLE IF NOT EXISTS " + DATABASE_TABLE + " ( " +
KEY_ID + " TEXT PRIMARY KEY , " +
KEY_NAME + " TEXT NOT NULL , " +
KEY_ROLLNO + " TEXT NOT NULL );"
*/
db.execSQL("CREATE TABLE if not exists database_table (id TEXT PRIMARY KEY ,"
+ "student_name"
+ " TEXT ,"
+ "student_rollno"
+ " TEXT);");
}
@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 DbActivity(Context c) {
ourContext = c;
}
public DbActivity open() throws SQLException{
ourHelper = new DbHelper(ourContext);
ourDatabase = ourHelper.getWritableDatabase();
return this;
}
public void close() {
ourHelper.close();
}
public void createEntry(String id, String name, String rollno) {
// TODO Auto-generated method stub
ContentValues cv = new ContentValues();
cv.put(KEY_ID, id);
cv.put(KEY_NAME, name);
cv.put(KEY_ROLLNO, rollno);
ourDatabase.insert(DATABASE_TABLE, null, cv);
}
public String getData() throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
String result = "";
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, null, null, null, null,null);
int id = c.getColumnIndex(KEY_ID);
int name = c.getColumnIndex(KEY_NAME);
int rollno = c.getColumnIndex(KEY_ROLLNO);
for(c.moveToFirst();!c.isAfterLast();c.moveToNext());
{
result = result + c.getColumnName(id) + "" + c.getColumnName(name) + "" + c.getColumnName(rollno) + "/n";
}
return result;
}
public String getName(String s) throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, KEY_ID + "" + s, null, null, null, null);
if(c!=null)
{
c.moveToFirst();
String name = c.getString(1);
return name;
}
return null;
}
public String getRollno(String s) throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, KEY_ID + "" + s, null, null, null, null);
if(c!=null)
{
c.moveToFirst();
String rollno = c.getString(2);
return rollno;
}
return null;
}
public void updateEntry (String id1, String name, String rollno) throws SQLException {
ContentValues cvUpdate = new ContentValues();
cvUpdate.put(KEY_ID, id1);
cvUpdate.put(KEY_NAME, name);
cvUpdate.put(KEY_ROLLNO, rollno);
ourDatabase.update(DATABASE_TABLE, cvUpdate, KEY_ID + "=" + id1 , null);
}
public void deleteEntry(String id) throws SQLException {
ourDatabase.delete(DATABASE_TABLE, KEY_ID + "=" + id , null);
}
}
}
activity_main.xml 文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<EditText
android:id="@+id/etSQLName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:ems="10"
android:hint="Enter Name" >
<requestFocus />
</EditText>
<Button
android:id="@+id/bSQLInsert"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/bSQLMain"
android:layout_marginLeft="17dp"
android:layout_marginTop="38dp"
android:text="Insert" />
<Button
android:id="@+id/bSQLUpdate"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/bSQLInsert"
android:layout_alignBottom="@+id/bSQLInsert"
android:layout_toRightOf="@+id/bSQLInsert"
android:text="update" />
<Button
android:id="@+id/bSQLView"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/bSQLUpdate"
android:layout_alignBottom="@+id/bSQLUpdate"
android:layout_toRightOf="@+id/bSQLUpdate"
android:text="view" />
<Button
android:id="@+id/bSQLDelete"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/bSQLView"
android:layout_toRightOf="@+id/bSQLView"
android:text="delete" />
<Button
android:id="@+id/bSQLBack"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/bSQLUpdate"
android:layout_centerHorizontal="true"
android:layout_marginTop="18dp"
android:text="back" />
<Button
android:id="@+id/bSQLMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/etSQLRollno"
android:layout_centerHorizontal="true"
android:layout_marginTop="83dp"
android:text="Next" />
<EditText
android:id="@+id/etSQLRollno"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/etSQLName"
android:layout_below="@+id/etSQLName"
android:ems="10"
android:hint="Enter Rollno"
/>
<EditText
android:id="@+id/etSQLId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/etSQLRollno"
android:layout_below="@+id/etSQLRollno"
android:layout_marginTop="20dp"
android:ems="10"
android:hint="enter ID"
/>
2> 问题 - 如何删除已由 AVD 或虚拟设备创建的表
最佳答案
希望这对你有帮助:
替换这一行:
public static final String KEY_ID = "id";
由
public static final String KEY_ID = "_id";
编辑://改变这个方法
public String getName(String s) throws SQLException {
// TODO Auto-generated method stub
String[] columns = new String[]{KEY_ID,KEY_NAME,KEY_ROLLNO};
Cursor c = ourDatabase.query(DATABASE_TABLE, columns, KEY_ID + "=" + s, null, null, null, null);// change this line in this method
if(c!=null)
{
c.moveToFirst();
String name = c.getString(1);
return name;
}
return null;
}
关于android.database.sqlite.SQLiteException : no such column : id (code 1) while compiling : s,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17674241/
这正确地呈现了标题,因为我可以看到一个列带有“Product ID”标题的表:。我正试图重构它,这样我就可以重用它,因为它们在整个应用程序中几乎是相同的:。在这种情况下,头不会呈现...检查页面元素中
我什至不知道如何表达这一点,但在 Python 中有没有一种方法可以引用等号之前的文本,而无需实际再次编写? ** 编辑 - 我在 Jupyter 中使用 python3 我似乎用了半辈子的时间来写作
假设我有一个包含以下列的字典 dict_ = [ {'key1': 'value1', 'key2': 'value2', 'key3': 'value3', '
假设我有一个包含以下列的字典 dict_ = [ {'key1': 'value1', 'key2': 'value2', 'key3': 'value3', '
假设我的数据库中有一张地铁 map ,其中每条线路的每个站点都是一行。如果我想知道我的线路在哪里互连: mysql> SELECT LineA.stop_id FROM LineA, LineB WH
代码 select c1,c2,c3,c4,c5,c6 from table where c5 in ('a', 'b') 从这里开始,我想将 c5 列拆分为两列,然后根据它们对 c
我正在尝试搜索表格中的两列,即标题和描述。但我想先搜索标题,然后再搜索描述。所以匹配标题的所有行排在第一位,所有匹配描述的行排在第二位 我可以使用单个 SQL 查询来实现吗? 最佳答案 您还可以使用
下面有以下 Python 数据框。 “标志”字段是我想要用代码创建的所需列。 我想要执行以下操作: 如果“分配类型”是预测的并且“Activities_Counter”大于 10,我想创建一个名为“F
我有两列,area 和 block,其中 area 是一个 int 类型,block 是一个 varchar。 现在我正在写两个查询: select * from table where area a
使用 Slick 2,我试图生成一个带有元组 IN 子句的查询: select * from my_table where (a, b) IN ((1, 87)); 给定: val seq: Seq[
我正在尝试从数据透视表中获取一组值,其中 A 列等于值数组,例如 ID 12 的 attribute_value_id 等于 3 和 9。这可以做到吗?我已经走了这么远... ID | post_id
我找不到这样做的有效方法。我在 Python 中有以下 DataFrame,列从 A 到 Z A B C ... Z 0 2.0 8.0 1.0 ... 5.0 1
我的数据框中有以下格式的数据: >>> df = pd.DataFrame(np.random.randn(6,4),index=dates,columns=list('ABCD')) >>> df
我有多个与我公司销售的产品相关的表被新产品取代,随着时间的推移,这导致了多个表的出现。 我一遍又一遍地使用以下查询,直到最终表中只剩下 2 个产品... CREATE TABLE mar15a
我有如下 2 个表:- 表A ------------------------------- | product_id | price | --------------------
我有一个名为 tbl_mainsheet7 的表,创建方式如下: pk_mainsheet client_id project_id mainsheet_id project_cat EA_
我得到了以下 HTML 结构: ... ... 我的 CSS: #main-container { width:80%; margin:20px auto;
对于我的以下要求,我无法获得解决方案。 如果 data.table(如下)在 Col1 和 Col3 中有匹配的值。替换 Col2 值(旧的 New-Val)。 Col1 Col2 Col3
我正在通过连接几个表来构建一个 View ,以通过 Entity Framework 提取数据。由于此 View 没有唯一列,EntityFramework 无法检索正确的结果集(即第一列重复)。 为
好的,我已经尝试了太久了,是时候寻求帮助了。我有一个看起来有点像这样的数据框: person fruit quantity all_fruits 0 p1 grapes 2
我是一名优秀的程序员,十分优秀!