• 读信息


    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <TextView
        android:id="@+id/tv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="用户名:"
        android:textSize="30dp"
        android:layout_marginTop="60dp"
        />
    <EditText
        android:id="@+id/et1"
        android:layout_width="600dp"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/tv1"
        android:layout_marginTop="50dp"
        android:textSize="30dp"
        />
    
    <TextView
        android:id="@+id/tv2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="密码:"
        android:textSize="30dp"
        android:layout_marginTop="50dp"
        android:layout_below="@+id/tv1"
        />
    <EditText
        android:id="@+id/et2"
        android:layout_width="600dp"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/tv2"
        android:layout_marginTop="30dp"
        android:textSize="30dp"
        android:layout_below="@+id/et1"
    
        />
    
    
        <Button
            android:layout_marginTop="80dp"
            android:layout_width="300dp"
            android:layout_height="wrap_content"
            android:text="注册"
            android:textSize="50dp"
            android:layout_below="@+id/et2"
            android:layout_centerHorizontal="true"
            android:onClick="click"
            />
    </RelativeLayout>
    package com.example.ccc;
    
    import android.content.Context;
    import android.database.sqlite.SQLiteDatabase;
    import android.database.sqlite.SQLiteDatabase.CursorFactory;
    import android.database.sqlite.SQLiteOpenHelper;
     
    public class StuOpenHelper extends SQLiteOpenHelper{
     
        public StuOpenHelper(Context context) {
            super(context, "stu.db", null, 5);
            // TODO Auto-generated constructor stub
        }
     
        @Override
        public void onCreate(SQLiteDatabase db) {
            System.out.println("第一次创建");
            String sql = "CREATE TABLE stu (_id integer PRIMARY KEY AUTOINCREMENT,USERNAME VARCHAR(20),PASSWORD  VARCHAR(20))";
            db.execSQL(sql);
             
        }
     
        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            // TODO Auto-generated method stub
                System.out.println("更新"+oldVersion+"  "+newVersion);
                if(oldVersion==5 && newVersion==6) {
                    String sql = "CREATE TABLE bj (_id integer PRIMARY KEY AUTOINCREMENT,CLASSNAME VARCHAR(20))";
                    db.execSQL(sql);
                }
     
        }
    }
  • 相关阅读:
    (总结)Oracle 11g常用管理命令(用户、表空间、权限)
    在 .NET 中使用 FixedTimeEquals 应对计时攻击
    开源的.Net 工作流引擎Elsa初试——创建工作流服务器和图形化工作流配置管理应用
    C# 数字证书 RSA加密解密 加签验签
    C#获取Unix时间戳
    react 带行号的文本框的使用方案
    ThinkPad电池处会发出“吱吱”电流声怎么办
    使用C#和MonoGame开发俄罗斯方块游戏
    C# 通过word模板动态生成Word
    云原生那些顶级开源项目,你都用过哪些?
  • 原文地址:https://www.cnblogs.com/527x/p/14108881.html
Copyright © 2020-2023  润新知