Android

关注公众号 jb51net

关闭
首页 > 软件编程 > Android > Android连接MySQL

Android连接MySQL数据库实现方法详解

作者:在下嗷呜

这篇文章主要介绍了Android连接MySQL数据库实现方法,在Android应用程序中连接MySQL数据库可以帮助开发人员实现更丰富的数据管理功能,而且在Android中操作数据库真的太智能了,需要的朋友可以参考下

前言

请注意为用户设置主机时,主机设置为%时表示通配符,即任何主机均可使用本用户连接,但不能使用localhost(但可以使用本机ipv4地址连接),想使用localhost连接需将用户主机设置为localhost。

Android连MySQL因为不确定连接地址,所以用户主机要设置为%

(可用cmd查询本机ip,cmd->ipconfig)

因为是耗时操作!!!

如果url、账号、密码正确还报错大概率是没有在子线程操作数据库。

//必须加
<uses-permission android:name="android.permission.INTERNET"/>
//可不加
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

将JAR程序放入Project视图模式下 app/libs中,并右键->Add As Library

"?useUnicode=true&characterEncoding=utf-8&useSSL=false"

(1)ConnectionUtils 连接工具类,用于连接数据库

(2)User 存储内容类,用于存储MySQL回传数据

(3)UserDao 数据访问对象,执行SQL操作返回存储内容类

个人电脑一般在局域网内,其ip为NAT局域网ip,只能被同局域网设备访问,无法直接被其他网络访问,可使用内网穿透软件(如花生壳)进行处理。

information_schema、mysql、performation_schema、test

实例

//主线程  以监听为例
Thread thread=null;
public void onClick(View view){
      if(thread==null){
          //连接数据库不能在主线程,单开一个线程
          thread=new Thread(new Runnable(){
              User user=UserDao.findUser(1);
          });
      }
}
//连接工具类
public class ConnectionUtils {
    public static Connection getConn(){
        String url="jdbc:mysql://255.255.255.1:3306/databaseName"+"?useUnicode=true&characterEncoding=utf-8&useSSL=false";
        String username="firstUser";
        String password="123456";
        try {
            Class.forName("com.mysql.jdbc.Driver");
        } catch (ClassNotFoundException e) {
            throw new RuntimeException(e);
        }
        Connection connection_jdbc = null;
        try {
            DriverManager.setLoginTimer(2000);
            connection_jdbc= DriverManager.getConnection(url,username,password);
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
        return connection_jdbc;
    }
    public static boolean close(Connection connection){
        if(connection!=null){
            try {
                connection.close();
            } catch (SQLException e) {
                throw new RuntimeException(e);
            }
        }
    }
}
//存储内容类
public class User {
    private int id;
    private String username;
    private String password;
    private int storyid;
    public int getId() {
        return id;
    }
    public String getUsername() {
        return username;
    }
    public String getPassword() {
        return password;
    }
    public int getStoryid() {
        return storyid;
    }
    public User(int id,String username,String password,int storyid){
        this.id=id;
        this.username=username;
        this.password=password;
        this.storyid=storyid;
    }
    public String toString(){
        String str="id:"+id+" username:"+username+" password:"+password+" storyid:"+storyid;
        return str;
    }
}
//数据访问对象类
public class Dao {
    private Connection conn;
    public static User findUser(int id){
        //尽量复用通道,避免反复连接造成延迟
        if(conn==null){
            conn=ConnectionUtils.getConn();
        }
        try {
            Statement statement=conn.createStatement();
            String sql="select * from mysql where id ='"+id+"'";
            ResultSet resultSet=statement.executeQuery(sql);
            Boolean bool = resultSet.next();//先移动指针再获取值
            //如果ResultSet无结果,next()返回false
            if(bool){
               int resultSetId=resultSet.getInt("id");
               String resultSetSex=resultSet.getString("sex");
               String resultSetName=resultSet.getString("name");
               User user=new User(resultSetId,resultSetSex,resultSetName);
               return user;
            }
        } catch (SQLException e) {
            throw new RuntimeException(e);
        }
        //确定不使用再关闭通道
        //ConnectionUtils.close(conn);
    }
}

常见报错原因

连接缓慢原因

tag: java ,远程连接 ,mysql ,Android ,安卓,MySQL

到此这篇关于Android连接MySQL数据库实现方法详解的文章就介绍到这了,更多相关Android连接MySQL内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文