zoukankan      html  css  js  c++  java
  • 数据库

    <?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.ContentValues;
    import android.os.Bundle;
    import android.app.Activity;
    import android.database.sqlite.SQLiteDatabase;
    import android.view.Menu;
    import android.view.View;
    import android.widget.EditText;
     
    public class MainActivity extends Activity {
     
        private String username;
        private String password;
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
     
     
     }
        public void click(View view){
            username =((EditText) findViewById(R.id.et1)).getText().toString();
            password =((EditText) findViewById(R.id.et2)).getText().toString();
            StuOpenHelper helper = new StuOpenHelper(this);
            SQLiteDatabase db =helper.getReadableDatabase();
            ContentValues cv = new ContentValues();
            cv.put("username",username);
            cv.put("password",password);
            db.insert("stu",null,cv);
            db.close();
        }
    }
    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);
                }
     
        }
    }
  • 相关阅读:
    Objective-C中 Self和 Super详解
    OC类方法和实例方法中的self区别
    Objective-C----MRC内存管理 、 自动释放池 、 面向对象三大特性及封装 、 继承 、 组合与聚合
    Objective-C对象初始化 、 实例方法和参数 、 类方法 、 工厂方法 、 单例模式
    Objective-C语言介绍 、 Objc与C语言 、 面向对象编程 、 类和对象 、 属性和方法 、 属性和实例变量
    联合与枚举 、 高级指针 、 C语言标准库(一)
    C语言--- 字符串数组 、 预处理器和预处理指令 、 多文件编程 、 结构体
    C语言----变量及作用域 、 指针 、 指针和数组 、 进程空间 、 字符串
    iOS开发环境C语言基础 数组 函数
    ios开发环境 分支语句 、 循环结构(for) 、 循环结构
  • 原文地址:https://www.cnblogs.com/xiaomoa/p/14041820.html
Copyright © 2011-2022 走看看