zoukankan      html  css  js  c++  java
  • 2.21 账本开发2

    DBHelper

    package com.example.zhangbengapp;
    
    import android.content.Context;
    import android.database.sqlite.SQLiteDatabase;
    import android.database.sqlite.SQLiteOpenHelper;
    
    import androidx.annotation.Nullable;
    
    public class DBHelper extends SQLiteOpenHelper {
    
        private static int DB_VERSION = 1;
        private static String DB_NAME = "account_daily.db";
    
        public DBHelper(Context context) {
            super(context, DB_NAME ,null, DB_VERSION);
        }
    
        @Override
        public void onCreate(SQLiteDatabase db) {
            String sql="create table account(_id integer primary key autoincrement," +//主键
                    "Title varchar(20)," +//Title
                    "Date varchar(20)," +//Date
                    "Money vaechar(20))";//Money
            db.execSQL(sql);
        }
        @Override
        public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {
    
        }
    }
  • 相关阅读:
    jquery animate() stop() finish() 方法使用
    ant 相关命令
    ant 安装 网址
    邮件
    webdriver until
    python HTML报告
    登录
    yun
    centos7搭建smb服务
    爬取图片
  • 原文地址:https://www.cnblogs.com/dty602511/p/14913131.html
Copyright © 2011-2022 走看看