android之sqlite实现增删改查_第1页
android之sqlite实现增删改查_第2页
android之sqlite实现增删改查_第3页
android之sqlite实现增删改查_第4页
android之sqlite实现增删改查_第5页
已阅读5页,还剩3页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

android之sqlite实现增删改查Sqlite实现简单的增删改查主界⾯:功能实现:增加数据::ID删除6)ID查询:7)ID更新:主要代码段:DBOpenHelper.javapackagecom.chen.dao;importandroid.content.Context;importandroid.database.sqlite.SQLiteDatabase;importandroid.database.sqlite.SQLiteOpenHelper;importandroid.util.Log;publicclassDBOpenHelperextendsSQLiteOpenHelper{privatestaticfinalintVERSION=2;//版本privatestaticfinalStringDBNAME="user.db";//创建数据库publicDBOpenHelper(Contextcontext){super(context,DBNAME,null,VERSION);}@Override/**创建表*/publicvoidonCreate(SQLiteDatabasedb){db.execSQL("createtableifnotexistsu_user(_idintegerprimarykey,namevarchar(20),ageinteger,tallvarchar(5))");}//版本被更新时执⾏@OverridepublicvoidonUpgrade(SQLiteDatabasedb,intoldVersion,intnewVersion){}}UserDAO.javapackagecom.chen.dao;importjava.util.ArrayList;importjava.util.List;import/doc/299973411.htmler;importandroid.content.Context;importandroid.database.Cursor;importandroid.database.sqlite.SQLiteDatabase;publicclassUserDAO{privateDBOpenHelperhelper;//写⼊,不然会是出错,是空指针publicUserDAO(Contextcontext){helper=newDBOpenHelper(context);}/***添加⽤户信息*/publicvoidadd(Useruser){SQLiteDatabasedb=helper.getWritableDatabase();Stringsql="Insertintou_user(_id,name,age,tall)values(?,?,?,?)";db.execSQL(sql,newObject[]{user.getId(),user.getName(),user.getAge(),user.getTall()});db.close();}/***删除⽤户信息*/publicvoiddelete(Integer...id){if(id.length>0){StringBuffersb=newStringBuffer();for(inti=0;isb.append("?").append(",");}sb.deleteCharAt(sb.length()-1);SQLiteDatabasedatabase=helper.getWritableDatabase();Stringsql="deletefromu_userwhere_idin("+sb+")";database.execSQL(sql,(Object[])id);}}/***删除表⾥的全部数据*/publicvoiddelelteall(){SQLiteDatabasedatabase=helper.getWritableDatabase();Stringsql="deletefromu_user";database.execSQL(sql);}/***⽤户修改*/publicvoidupdate(Useruser){SQLiteDatabasedb=helper.getWritableDatabase();//写⼊数据库中注意不能放在外⾯Stringsql="updateu_usersetname=?,age=?,tall=where_id=?";db.execSQL(sql,newObject[]{user.getName(),user.getAge(),user.getTall(),user.getId()});}/***查找⽤户信息*/publicUserfind(intuserid){SQLiteDatabasedb=helper.getWritableDatabase();//写⼊数据库中注意不能放在外⾯Stringsql="select_id,name,age,tallfromu_userwhere_id=?";Cursorcursor=db.rawQuery(sql,newString[]{String.valueOf(userid)});if(cursor.moveToNext()){returnnewUser(cursor.getInt(cursor.getColumnIndex("_id")),cursor.getString(cursor.getColumnIndex("name")),cursor.getInt(cursor.getColumnIndex("age")),cursor.getString(cursor.getColumnIndex("tall")));}returnnull;}/***显⽰⽤户*/publicCursorselect(){SQLiteDatabasedb=helper.getReadableDatabase();Cursorcursor=db.query("u_user",null,null,null,null,null,"_iddesc");returncursor;}}MainActivity.javapackagecom.chen.database;/***writer:ManMan*Email:1015082527@/doc/299973411.html**/import/doc/299973411.htmlerDAO;import/doc/299973411.htmler;importandroid.app.Activity;importandroid.database.Cursor;importandroid.os.Bundle;importandroid.util.Log;importandroid.view.View;importandroid.view.View.OnClickListener;importandroid.widget.Button;importandroid.widget.EditText;importandroid.widget.ListView;importandroid.widget.SimpleCursorAdapter;importandroid.widget.TextView;importandroid.widget.Toast;publicclassMainActivityextendsActivityimplementsOnClickListener{privatestaticfinalStringTAG="Add";privateEditTextedname,edage,edtall,id;privateButtonadd,deleteshow,show,iddelete,idupdate,idshow,deleteall;privateTextViewtedatashow;privateListViewdatashow;/**Calledwhentheactivityisfirstcreated.*/@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(/doc/299973411.htmlyout.main);edname=(EditText)findViewById(R.id.edname);edage=(EditText)findViewById(R.id.edage);edtall=(EditText)findViewById(R.id.edtall);id=(EditText)findViewById(R.id.id);tedatashow=(TextView)findViewById(R.id.tedatashow);datashow=(ListView)findViewById(R.id.datashow);add=(Button)findViewById(R.id.add);deleteshow=(Button)findViewById(R.id.deleteshow);show=(Button)findViewById(R.id.show);iddelete=(Button)findViewById(R.id.iddelete);idupdate=(Button)findViewById(R.id.idupdate);idshow=(Button)findViewById(R.id.idshow);deleteall=(Button)findViewById(R.id.deleteall);add.setOnClickListener(this);deleteshow.setOnClickListener(this);show.setOnClickListener(this);iddelete.setOnClickListener(this);idupdate.setOnClickListener(this);idshow.setOnClickListener(this);deleteall.setOnClickListener(this);}publicvoidonClick(Viewv){/**添加数据*/if(v==add){if(!id.getText().toString().equals(null)&&!edname.getText().toString().equals(null)&&!edage.getText().toString().equals(null)&&!edtall.getText().toString().equals(null)){try{UserDAOuserdao=newUserDAO(MainActivity.this);Useruser=newUser(Integer.valueOf(id.getText().toString()),edname.getText().toString(),Integer.valueOf(edage.getText().toString()),edtall.getText().toString());userdao.add(user);Toast.makeText(MainActivity.this,"成功添加!",Toast.LENGTH_LONG).show();tedatashow.setText("姓名:"+edname.getText().toString()+","+"年龄:"+Integer.valueOf(edage.getText().toString())+","+"⾝⾼:"+edtall.getText().toString()+",");//设置为空edage.setText("");edname.setText("");edtall.setText("");id.setText("");}catch(ExceptioneLog.i(TAG");Log.i(TAG,e.getMessage());}}elseif(id.getText().toString().equals(null)){Toast.makeText(MainActivity.this,"ID不能为空!",Toast.LENGTH_LONG).show();}}/**清除显⽰*/if(v==deleteshow){tedatashow.setText("");}/**全部显⽰*/if(v==show){try{UserDAOuserdao=newUserDAO(MainActivity.this);Cursorcursor=userdao.select();/**构建Listview适配器*/SimpleCursorAdapteradapter=newSimpleCursorAdapter(this,/doc/299973411.htmlyout.showuser,cursor,newStrin

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论