加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

sqlite

发布时间:2020-12-12 23:52:08 所属栏目:百科 来源:网络整理
导读:package com.jierui.helloworld; import com.jereiedu.entity.Person; import android.os.Bundle; import android.app.Activity; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.da
package com.jierui.helloworld; import com.jereiedu.entity.Person; import android.os.Bundle; import android.app.Activity; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.util.Log; import android.view.Menu; public class SqliteLoadActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_sqlite_load); //打开或创建test.db数据库 SQLiteDatabase db = openOrCreateDatabase("test.db",Context.MODE_PRIVATE,null); db.execSQL("DROP TABLE IF EXISTS person"); //创建person表 db.execSQL("CREATE TABLE person (_id INTEGER PRIMARY KEY AUTOINCREMENT,name VARCHAR,age SMALLINT)"); Person person = new Person(); person.name="caijun"; person.age=20; //插入数据 db.execSQL("INSERT INTO person VALUES (NULL,?,?)",new Object[]{person.name,person.age}); person.name = "david"; person.age = 33; //ContentValues以键值对的形式存放数据 ContentValues cv = new ContentValues(); cv.put("name",person.name); cv.put("age",person.age); //插入ContentValues中的数据 db.insert("person",null,cv); cv = new ContentValues(); cv.put("age",35); //更新数据 db.update("person",cv,"name = ?",new String[]{"john"}); Cursor c = db.rawQuery("SELECT * FROM person WHERE age >= ?",new String[]{"33"}); while (c.moveToNext()) { int _id = c.getInt(c.getColumnIndex("_id")); String name = c.getString(c.getColumnIndex("name")); int age = c.getInt(c.getColumnIndex("age")); Log.i("db","_id=>" + _id + ",name=>" + name + ",age=>" + age); } c.close(); //删除数据 db.delete("person","age < ?",new String[]{"35"}); //关闭当前数据库 db.close(); //删除test.db数据库 // deleteDatabase("test.db"); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.sqlite_load,menu); return true; } }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读