Android Studio + sqllite 数据库连接的步骤以及常见问题

这篇具有很好参考价值的文章主要介绍了Android Studio + sqllite 数据库连接的步骤以及常见问题。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。


软件见文末

一、连接步骤

前提是先安装好sqllite---->无脑式next安装

1、打开Android studio 创建一对Activity,

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

2、书写相关代码

//   在 StudentActivity.java
package com.example.myapplication01;

import androidx.appcompat.app.AppCompatActivity;

import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

public class StudentActivity extends AppCompatActivity {
    private EditText bianhao;
    private EditText name;
    private EditText age;
    private EditText czbianhao;
    private EditText czname;
    private TextView czresult;
    private SQLiteDatabase database;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_student);

        bianhao = findViewById(R.id.bianhao);
        name = findViewById(R.id.name);
        age = findViewById(R.id.age);

        czbianhao = findViewById(R.id.czbianhao);
        czname = findViewById(R.id.czxingming);
        czresult = findViewById(R.id.result);

        Mydatabase mydatabase = new Mydatabase(StudentActivity.this);
        database = mydatabase.getWritableDatabase();

    }
    public void  insert(View view) {
        String sql1 = "select * from user where 编号=?";
        Cursor cursor = database.rawQuery(sql1, new String[]{bianhao.getText().toString()});
        if (cursor.getCount() == 0) {
            String sql = "insert into user(编号,姓名,年龄)values(?,?,?)";
            database.execSQL(sql, new Object[]{Integer.parseInt(bianhao.getText().toString()), name.getText().toString(),
                    Integer.parseInt(age.getText().toString())});
            Toast.makeText(getApplicationContext(), "已成功添加!!!", Toast.LENGTH_SHORT).show();
        } else {
            Toast.makeText(getApplicationContext(), "数据已存在!!!", Toast.LENGTH_SHORT).show();
            bianhao.setText("");
            bianhao.requestFocus();
        }
    }
    //方法二
        /*String sql1="select * from user where 编号=?";
        Cursor cursor = database.rawQuery(sql1,new String[]{bianhao.getText().toString()});
        if(cursor.getCount()==0){
            ContentValues contentValues = new ContentValues();
            contentValues.put("编号",Integer.parseInt(bianhao.getText().toString()));
            contentValues.put("姓名",name.getText().toString());
            contentValues.put("年龄",Integer.parseInt(age.getText().toString()));
            Toast.makeText(getApplicationContext(),"已成功添加!!!",Toast.LENGTH_SHORT).show();
        }else {
            Toast.makeText(getApplicationContext(),"数据已存在!!!",Toast.LENGTH_SHORT).show();
            bianhao.setText("");
            bianhao.requestFocus();
        }*/
    public void  delete(View view){
        String sql = "delete from user where 编号=?";
        database.execSQL(sql,new Object[]{Integer.parseInt(bianhao.getText().toString())});
        Toast.makeText(getApplicationContext(),"数据已删除!!!",Toast.LENGTH_SHORT).show();
    }
    public void update(View view){
        String sql = "update user set 姓名=?,年龄=? where 编号=?";
        database.execSQL(sql,new Object[]{name.getText().toString(),Integer.parseInt(age.getText().toString()),
                Integer.parseInt(bianhao.getText().toString())});
        Toast.makeText(getApplicationContext(),"数据已更新!!!",Toast.LENGTH_SHORT).show();
    }
    public void findbianhao(View view){
        String sql="select * from user where 编号=?";
        Cursor cursor = database.rawQuery(sql,new String[]{czbianhao.getText().toString()});
        if(cursor.moveToNext()){
            int bianhao1 = cursor.getInt(cursor.getColumnIndex("编号"));
            String name1 = cursor.getString(cursor.getColumnIndex("姓名"));
            int age1 = cursor.getInt(cursor.getColumnIndex("年龄"));

            czresult.setText("查找结果->编号: "+bianhao1+"\t姓名:"+name1+"\t年龄:"+age1);
        }else {
            Toast.makeText(getApplicationContext(),"无记录!!!",Toast.LENGTH_SHORT).show();
            czresult.setText("");
        }
    }
    public void findname(View view){
        String sql="select * from user where 姓名=?";
        Cursor cursor = database.rawQuery(sql,new String[]{czname.getText().toString()});
        if(cursor.moveToNext()){
            int bianhao2 = cursor.getInt(cursor.getColumnIndex("编号"));
            String name2 = cursor.getString(cursor.getColumnIndex("姓名"));
            int age2 = cursor.getInt(cursor.getColumnIndex("年龄"));

            czresult.setText("查找结果->编号: "+bianhao2+"\t姓名:"+name2+"\t年龄:"+age2);
        }else {
            Toast.makeText(getApplicationContext(),"无记录!!!",Toast.LENGTH_SHORT).show();
            czresult.setText("");
        }
    }
}


<!--在 activity_student_xml中-->

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="@drawable/bg6"
    android:orientation="vertical"
    android:gravity="center"
    tools:context="com.example.myapplication01.StudentActivity">
    <TextView
        android:textSize="40dp"
        android:textStyle="bold"
        android:textColor="@android:color/holo_red_dark"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="学生信息管理系统"
        android:layout_marginBottom="36dp"
        android:id="@+id/textView11" />

    <LinearLayout
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_marginBottom="20dp"
        android:layout_height="wrap_content">

        <TextView
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="编  号"
            android:id="@+id/textView" />

        <EditText
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/bianhao" />
    </LinearLayout>

    <LinearLayout
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:orientation="horizontal"
        android:layout_marginBottom="20dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="姓  名"
            android:id="@+id/textView2" />

        <EditText
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/name" />
    </LinearLayout>

    <LinearLayout
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_marginBottom="20dp"
        android:layout_height="wrap_content">

        <TextView
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="年  龄"
            android:id="@+id/textView3" />

        <EditText
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="numberDecimal"
            android:maxLength="3"
            android:id="@+id/age"
            />
    </LinearLayout>

    <LinearLayout
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_marginBottom="20dp"
        android:layout_height="wrap_content">

        <TextView
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="查找的编号"
            android:id="@+id/textView4" />

        <EditText
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="260dp"
            android:layout_height="wrap_content"
            android:id="@+id/czbianhao" />

        <Button
            android:onClick="findbianhao"
            android:textSize="20dp"
            android:textStyle="bold"
            android:background="@drawable/buttonpress2"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="查 找"
            android:id="@+id/buttonczbianhao" />
    </LinearLayout>

    <LinearLayout
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_marginBottom="20dp"
        android:layout_height="wrap_content">

        <TextView
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="查找的姓名"
            android:id="@+id/textView5" />

        <EditText
            android:textColor="@android:color/black"
            android:textSize="25dp"
            android:textStyle="bold"
            android:layout_width="260dp"
            android:layout_height="wrap_content"
            android:id="@+id/czxingming" />

        <Button
            android:onClick="findname"
            android:textSize="20dp"
            android:textStyle="bold"
            android:background="@drawable/buttonpress2"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="查 找"
            android:id="@+id/buttonczxingming" />

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_marginBottom="10dp"
        android:gravity="center"
        android:layout_height="wrap_content">

        <Button
            android:onClick="insert"
            android:textSize="20dp"
            android:textStyle="bold"
            android:background="@drawable/buttonpress2"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="添 加"
            android:id="@+id/btnadd" />

        <Button
            android:onClick="delete"
            android:textSize="20dp"
            android:textStyle="bold"
            android:background="@drawable/buttonpress2"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="删 除"
            android:layout_marginLeft="30dp"
            android:id="@+id/btndel" />

        <Button
            android:onClick="update"
            android:textSize="20dp"
            android:textStyle="bold"
            android:background="@drawable/buttonpress2"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="修 改"
            android:layout_marginLeft="30dp"
            android:id="@+id/btnupdate" />
    </LinearLayout>

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:textSize="25dp"
            android:textStyle="bold"
            android:textColor="@android:color/holo_red_dark"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="查找结果:"
            android:id="@+id/result1" />
        <TextView
            android:textSize="25dp"
            android:textStyle="bold"
            android:textColor="@android:color/holo_red_dark"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            android:id="@+id/result" />
    </LinearLayout>
</LinearLayout>

提示:.xml有些资源需要用自己有的,否者有可能会报错!!!!

3、创建一个Mydatabase的一个Java类。

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

//在Mydatanase.java中书写
package com.example.myapplication01;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

public class Mydatabase extends SQLiteOpenHelper {
    static String name = "www.db";
    static int version = 1;

    public Mydatabase(Context context){
        super(context,name,null,version);
    }


    @Override
    public void onCreate(SQLiteDatabase db) {
        String sql = "create table user(编号 Integer,姓名 varchar(10),年龄 Integer)";
        //逗号是英文的
        db.execSQL(sql);
    }


    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

    }
}

4、运行

5、启动monitor连接数据库

1、打开SDK后,查看SDK路径

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

2、在SDK路径下右键鼠标运行命令行,输入命令monitor,即可启动Android monitor Device如下图所示:

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
执行完monitor,正常情况下会直接跳转出以下界面
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
以上是正常不出错的连接步骤

6、使用模拟器运行的界面进行操作可能出现的问题

1、执行后前台显示成功,数据库里面的refresh没反应的问题

解决方案:
打开Android studio,在如下图所示的地方可以打开data文件夹
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,androidandroid studio中sqllite数据库打叉是什么ys,android studio,数据库,androidandroid studio中sqllite数据库打叉是什么ys,android studio,数据库,android
打开sqllite
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,androidandroid studio中sqllite数据库打叉是什么ys,android studio,数据库,androidandroid studio中sqllite数据库打叉是什么ys,android studio,数据库,android

二、常见错误

0、在运行monitor时跳转页面时有可能会弹出

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

1、以上这是由于有端口号冲突问题,如果点击ok以后不是这个界面并且右边的data能点开,那就问题不大,可以忽略以下操作

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

2、 如果是这个界面,并且data也点不开要进行的操作

将端口号修改一下:

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

data打不开是由于权限不够需要进行以下操作:

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

执行以下操作之前需要配置platform-tools环境变量

1、找到这个目录

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

2、打开高级设置

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android
配好直接点三次确定退出

3、打开cmd输入adb shell,显示以下转态就是可以了。

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

3、关于/system/bin/sh: su: not found的解决办法

c:\user\zg>adb shell
generic_x86:/ $ su
/system/bin/sh: su: not found

原因是
Android Studio带(Google Play)的模拟器无法获得root权限安装
该换成为带(Google APIs)的模拟器即可,如下
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

4、解决无法打开data文件夹,原因是权限不够,需要设置权限

可以一层一层的给权限

C:\Users\zg>adb shell
generic_x86_64:/ $ su
generic_x86_64:/ # chmod 777 /data
generic_x86_64:/ # exit
generic_x86_64:/ $ su
generic_x86_64:/ # chmod 777 /data/data
generic_x86_64:/ # exit
generic_x86_64:/ $ exit

结束以上操作,退出Android device monitor,重新执行以下命令
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

弹出这个界面(之前的爆红就消失了)
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

左边依旧是问号,这时执行以下操作即可
1、首先先获取root权限

打开cmd执行
android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

2、在返回Android device monitor中执行以下操作

android studio中sqllite数据库打叉是什么ys,android studio,数据库,android

相关资料

链接:https://pan.baidu.com/s/14TrrJlCP7b5gxQPC3PpQlg?pwd=nduf
提取码:nduf文章来源地址https://www.toymoban.com/news/detail-764688.html

到了这里,关于Android Studio + sqllite 数据库连接的步骤以及常见问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Android studio 连接SQLite数据库 +创建数据库+创建数据库表

    Android studio 之数据库的使用 连接创建SQLite 大家好,欢迎来到寒依。 相信看啦我的教程 当老师问你在学习Android studio 数据库使用过程中遇到什么困难,分享一下你的感悟和解决方法 的时候,你可以直接大胆的说出来: “老师我没有遇到问题,看啦寒依的教程 畅行无阻” 我

    2024年02月02日
    浏览(55)
  • 关于Android Studio连接mysql数据库的过程和注册功能的实现(数据的插入)以及mysql环境变量的配置

    1.安装mysql数据库,安装的教程哔站有很多,版本尽量用mysql5.7的版本,用mysql8.0的版本与android studio进行连接的话可能会出现问题。 2.安装完成之后,给本机配置环境变量,步骤:如下图示 (1)通过搜索打开环境变量。 (2).点击环境变量。 (3).找到系统变量点击新建。

    2024年04月14日
    浏览(65)
  • 【Android Studio】安卓APP期末作品记录之连接sqlite数据库以及简单的sqlite增删改查

    期末作品要求使用数据库,我自己折腾了一会,又看了很多博主发的文章,终于成功了,特此记录:使用SQLiteDatabase和SQLiteOpenHelper连接已有sqlite数据库。 第一步,导入sqlite数据库 因为我已经创建好了一个sqlite数据库,所以第一步得将我的数据库导入项目中 在app — src — ma

    2024年02月03日
    浏览(57)
  • .netframwork4.8 ef 使用sqllite数据据库

    确保以下Nuget包都已安装: System.Data.SQLite(x86/x64) System.Data.SQLite EF6 System.Data.SQLite LINQ SQLite.CodeFirst Entity Framework   注意,这些在ef类库安装以后, 还要在程序窗体里再次安装一遍,因为这些类不能自动复制到主窗体中,会报错 1)新建ORMContext类继承DbContext 2)用到的Model类D

    2024年02月02日
    浏览(29)
  • Android studio 通过mysql连接数据库完成注册登录,登陆后通过tcp协议与电脑的网络调试助手互发信息

    先不多直接看软件截图 这个是首页等陆界面 xml代码如下 MainActivity文件    注册界面的xlm文件  这个界面比较简单就不介绍了   MainActivity文件 这是一个注册失败的界面,如果数据库内有相同的账号密码则显示注册失败 话不多说直接上代码 MainActivity里面的代码 这里是user类用

    2024年02月02日
    浏览(48)
  • 数据库——JDBC基本连接步骤

    目录 JDBC概念: JDBC保姆级连接步骤: JDBC连接中用到的对象详解: 1.DriverManager对象(驱动管理对象) 2.Connection对象(连接对象) 3.Statement对象(执行SQL语句的对象) 4.ResultSte对象(结果集) JDBC的全称是:Java数据库连接(Java DataBase Connectivity),它是一套用于执行SQL语句的Jav

    2024年02月07日
    浏览(63)
  • java程序连接数据库的步骤

    Java程序连接数据库通常需要以下几个步骤: 加载数据库驱动程序:通过Class.forName()方法加载特定数据库的驱动程序,例如MySQL的驱动程序为com.mysql.jdbc.Driver。如果使用JDBC4.0及以上版本的驱动程序,可以省略此步骤。 建立数据库连接:通过DriverManager.getConnection()方法创建与数

    2024年02月10日
    浏览(38)
  • PowerDesigner 连接MySQL数据库详细步骤

    1、新建一个 Physical Data ,选择自己要连接的数据库 在PowerDesigner菜单栏中,依次点击“File -New Model-Physical Data” 点击OK 2、连接数据源 依次点击“File -Reverse Enginner-Database…” 显示如下页面,点击确定 点击红框,弹出一下画面 点击configure… 点击创建新的数据源,选择用户数据

    2024年02月11日
    浏览(77)
  • 使用eclipse连接mysql数据库步骤

    1.导入连接MySQL数据库驱动包(例如mysql-connector-java-5.1.7-bin.jar),并测试。 步骤: 1)在eclipse里面点击右上角的图标,如下图所示。 2)选中Database Connections右键,点new。 3)选择MySQL,点击next。 4)如图所示: 2.引用MySQL驱动包jar 在项目右键一个文件夹lib,把驱动包复制进去,

    2024年02月11日
    浏览(68)
  • DataGrip连接hive数据库详细步骤

    1.如图所示,找到APache Hive并点击进入  2.点击图中框选位置 3.进入驱动后,手动添加hive的驱动jar包,hive-2.3.3驱动jar包免费下载地址(https://download.csdn.net/download/weixin_60315309/86830829?spm=1001.2014.3001.5501) 4.添加jar包后进行应用 5.应用成功后配置主机名与用户名(主机名为hive服务

    2024年02月15日
    浏览(39)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包