欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年Android教程之SQlit数据库 .pdf

    • 资源ID:27261548       资源大小:39.79KB        全文页数:5页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年Android教程之SQlit数据库 .pdf

    Android 教程之 SQlit 数据库操作android.database.sqlite.SQLiteOpenHelperpublic SQLiteOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) Create a helper object to create, open, and/or manage a database. The database is not actually created or opened until one of getWritableDatabase() or getReadableDatabase() is called. 直到调用 getWritableDatabase()函数或者 getReadableDatabase() 时才会创建或者打开数据库。(如果数据库没有创建,那么会先创建数据库)Parameters context to use to open or create the database name of the database file, or null for an in-memory database factory to use for creating cursor objects, or null for the default version number of the database (starting at 1); if the database is older, onUpgrade(SQLiteDatabase, int, int) will be used to upgrade the database A helper class to manage database creation and version management. SQLiteOpenHelper 类是管理数据库生成和数据库版本建立的辅助类。You create a subclass implementing onCreate(SQLiteDatabase), onUpgrade(SQLiteDatabase, int, int) and optionally onOpen(SQLiteDatabase), and this class takes care of opening the database if it exists, creating it if it does not, and upgrading it as necessary. Transactions are used to make sure the database is always in a sensible state SQLiteOpenHelper,如果这个数据库存在,那么SQLiteOpenHelper 负责管理数据库。如果数据库不存在,那么SQLiteOpenHelper 会建立一个数据库。如果需要的话,升级数据库。 private static final String DB_NAME = CartDB.db; private static final int DB_VERSION = 2; private static final String TABLE_NAME_1 = MyOrder; private static final String TABLE_NAME_2 = OrderLine; private static class DatabaseHelper extends SQLiteOpenHelper DatabaseHelper(Context context) super(context, DB_NAME, null, DB_VERSION); Override public void onCreate(SQLiteDatabase db) db.execSQL(CREATE TABLE + TABLE_NAME_1 + ( + order_no + text not null, + type + text not null, + desc + text + );); db.execSQL(CREATE TABLE + TABLE_NAME_2 + ( + order_no + text not null, + item_no + text not null, 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 5 页 - - - - - - - - - + QTY + text + );); Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) 1.首先得新建数据库的代理类,通过这个类得到具体数据库的代理类。mOpenHelper = new DatabaseHelper(this); 这个 DatabaseHelper 是继承 SQLiteOpenHelper SQLiteDatabase db = mOpenHelper.getWritableDatabase(); 2. 由于操作的是 SQLiteDatabase 数据,故得到一个 SQLiteDatabase 类,这个类里边的方法可以对数据库进行具体的操作。建立数据库:mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getWritableDatabase(); String sql = create table Student( + stud_no text not null, + stud_name text ); try db.execSQL(sql); setTitle(create table ok!); catch (SQLException e) Log.e(ERROR, e.toString(); setTitle(create table Error!); drop 数据库: mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getWritableDatabase(); String sql = drop table Student; try db.execSQL(sql); setTitle(drop table ok!); catch (SQLException e) Log.e(ERROR, e.toString(); setTitle(drop table Error!); 插入语句:采用 sql 语句进行插入: mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getWritableDatabase(); String sql_1 = insert into Student (stud_no, stud_name) 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 5 页 - - - - - - - - - values(S108, Lily Chen); String sql_2 = insert into Student (stud_no, stud_name) values(S201, Tom Kao); String sql_3 = insert into Student (stud_no, stud_name) values(S333, Peter Rabbit); try db.execSQL(sql_1); db.execSQL(sql_2); db.execSQL(sql_3); setTitle(insert records ok!); catch (SQLException e) Log.e(ERROR, e.toString(); 采用第二种方便的方法进行插入:(采用contentValues的方法)mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getWritableDatabase(); ContentValues cv = new ContentValues(); cv.put(stud_no, S108); cv.put(stud_name, Lily Chen); db.insert(Student, null, cv); cv = new ContentValues(); cv.put(stud_no, S201); cv.put(stud_name, Tom Kao); db.insert(Student, null, cv); cv = new ContentValues(); cv.put(stud_no, S333); cv.put(stud_name, Peter Rabbit); db.insert(Student, null, cv); setTitle(insert record ok!); 查询语句: mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getReadableDatabase(); String col = stud_no, stud_name ; cur = db.query(Student, col, null, null, null, null, null); Integer n = cur.getCount(); String ss = Integer.toString(n); setTitle(ss + records); cur.moveToFirst(); public Cursor query(String table, String columns, String selection, String selectionArgs, String groupBy, String having, String orderBy) selection: A filter declaring which rows to return, formatted as an SQL WHERE clause (excluding the WHERE itself). Passing null will return all rows for the given table. 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 5 页 - - - - - - - - - selectionArgs:You may include ?s in selection, which will be replaced by the values from selectionArgs, in order that they appear in the selection. The values will be bound as Strings. 如何不断循环的取出下一条打印出来:查询语句返回的是一个Cursor cur = db.query(MyOrder, col, cond, null, null, null,null);第一个参数为数据表的名字,第二个参数为一个String,里边是数据列的名字, 第三个是查询条件。翻译的 SQL 语句为: /SELECT order_no, type FROM MyOrder WHERE type=NEW 。得到查询出来数据的个数。Integer n = cur.getCount(); 如果想从头遍历的话: cur.moveToFirst(); 如果想遍历完的话可以这么做: while (!cur.isAfterLast() String ss = cur.getString(0) + , + cur.getString(1); datak+ = ss; cur.moveToNext(); public String getString(int columnIndex) 对于当前条处理完了,想进入下一条目。moveToNext();code example public String loadData() SharedPreferences passwdfile = m_ctx.getSharedPreferences(CONDITION, 0); String cond = passwdfile.getString(CONDITION, null); mOpenHelper = new DatabaseHelper(m_ctx); SQLiteDatabase db = mOpenHelper.getReadableDatabase(); String col = order_no, type ; Cursor cur = db.query(MyOrder, col, cond, null, null, null, null); /SELECT order_no, type FROM MyOrder WHERE type=NEW Integer n = cur.getCount(); String data = new Stringn; cur.moveToFirst(); int k = 0; while (!cur.isAfterLast() String ss = cur.getString(0) + , + cur.getString(1); datak+ = ss; cur.moveToNext(); return data; 更新:名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 5 页 - - - - - - - - - / 更新条列 SQLiteDatabase db = mOpenHelper.getWritableDatabase(); ContentValues cv = new ContentValues(); cv.put(stud_no, S288); cv.put(stud_name, Linda Wang); db.update(Student, cv, stud_no = S201, null); 删除: /删除条列 mOpenHelper = new DatabaseHelper(v.getContext(); SQLiteDatabase db = mOpenHelper.getWritableDatabase(); db.delete(Student, stud_no = S108, null); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 5 页 - - - - - - - - -

    注意事项

    本文(2022年Android教程之SQlit数据库 .pdf)为本站会员(Che****ry)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开