我需要一次将数据添加到sqlite数据库。这就是我希望我的应用程序的用户看到这些数据是perloaded.How这样做。 我使用查询
执行了它INSERT INTO TABLE_NAME VALUES(value1,value2,value3,... valueN);
但每次应用打开该页面时,都会一次又一次地添加产品......请帮助
码
public class product_display extends Activity {
SQLiteDatabase mydb;
ListView prd_list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.product_dispay);
prd_list = (ListView) findViewById(R.id.list);
Intent in=getIntent();
Bundle bundle=in.getExtras();
final String list=bundle.getString("key");
mydb = product_display.this.openOrCreateDatabase("products", MODE_PRIVATE, null);
mydb.execSQL("CREATE TABLE IF NOT EXISTS product(pimage BLOB,pid INTEGER PRIMARY KEY,pname TEXT,pprice NUMERIC,pspec TEXT,pfeature TEXT)");
mydb.execSQL("INSERT INTO product(pname,pprice,pspec) VALUES('Candle stick 3',4000,'Solar garden / pathway light,Solar Panel:1pc crystal silicon solar cell,Material:Stainless steel ,WaterProof and safe ')");
Cursor cr = mydb.rawQuery("SELECT * FROM product", null);
final String[] pname = new String[cr.getCount()];
String[] price = new String[cr.getCount()];
int i = 0;
while(cr.moveToNext())
{
String name = cr.getString(cr.getColumnIndex("pname"));
String prprice = cr.getString(cr.getColumnIndex("pprice"));
pname[i] = name;
price[i] = prprice;
i++;
}
ListAdapter adapter = new ListAdapter(this, pname, price);
prd_list.setAdapter(adapter);
prd_list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
String nme = pname[arg2];
Bundle bun = new Bundle();
bun.putString("key",list);
Bundle bn = new Bundle();
bn.putString("name",nme);
Intent in = new Intent(product_display.this,Product_Details.class);
in.putExtras(bun);
in.putExtras(bn);
startActivity(in);
}
});
}
}
答案 0 :(得分:2)
尝试这样:
public class TestDatabaseHelper extends SQLiteOpenHelper{
public TestDatabaseHelper(Context context, String name,
CursorFactory factory, int version) {
super(context, name, factory, version);
// TODO Auto-generated constructor stub
}
@Override
public void onCreate(SQLiteDatabase db) {
// TODO Create Your tables here
//and insert the pre loaded records here
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// TODO Auto-generated method stub
}
}
答案 1 :(得分:0)
假设您正在使用SQLiteOpenHelper
来管理数据库,请将插入内容放入帮助程序onCreate()
回调中。第一次创建数据库文件时,它会被调用一次。只需记住在作为参数传入的SQLiteDatabase
上调用数据库方法。
答案 2 :(得分:0)
您必须检查尚未在数据库中插入该值的循环“if”。我会做: 1)从表中选择字段 2)
if (field1 != value) then
execute(INSERT INTO TABLE_NAME VALUES(value1,value2,value3,...valueN));
else{
// continues with the program
}
3)关闭连接
P.S。抱歉我的英语不好(我是意大利语)
答案 3 :(得分:0)
使用sharedprefrence检查之前是否已提交数据。另一种解决方法可能是在sqlite中创建一个新表,并使用该表检查之前是否已插入数据。 例如。新表是check_insertion。使用列id和user_id。 现在检查在此表中是否有任何条目,如果没有,那么您可以运行您想要第一次运行的查询。
答案 4 :(得分:0)
简单地创建一个静态变量计数并将其初始化为0.并在第一次插入后将计数器增加到1,并在插入之前检查计数器是否为0。所以在你的情况下:
static int count = 0;
if(count == 0){
mydb.execSQL("INSERT INTO product(pname,pprice,pspec) VALUES('Candle stick 3',4000,'Solar garden / pathway light,Solar Panel:1pc crystal silicon solar cell,Material:Stainless steel ,WaterProof and safe ')");
count++;
}