Android连接MySQL数据库并进行增删改查操作示例讲解
程序员文章站
2022-03-18 17:29:08
1.android 连接mysql数据库public class dbopenhelper { private static string driver = "com.mysql.jdbc.dri...
1.android 连接mysql数据库
public class dbopenhelper { private static string driver = "com.mysql.jdbc.driver";//mysql 驱动 private static string url = "jdbc:mysql://ip:3306/数据库";//mysql数据库连接url private static string user = "root";//用户名 private static string password = "root";//密码 /** * 连接数据库 * */ public static connection getconn(){ connection conn = null; try { class.forname(driver);//获取mysql驱动 conn = (connection) drivermanager.getconnection(url, user, password);//获取连接 } catch (classnotfoundexception e) { e.printstacktrace(); } catch (sqlexception e) { e.printstacktrace(); } return conn; } /** * 关闭数据库 * */ public static void closeall(connection conn, preparedstatement ps){ if (conn != null) { try { conn.close(); } catch (sqlexception e) { e.printstacktrace(); } } if (ps != null) { try { ps.close(); } catch (sqlexception e) { e.printstacktrace(); } } } /** * 关闭数据库 * */ public static void closeall(connection conn, preparedstatement ps, resultset rs){ if (conn != null) { try { conn.close(); } catch (sqlexception e) { e.printstacktrace(); } } if (ps != null) { try { ps.close(); } catch (sqlexception e) { e.printstacktrace(); } } if (rs != null) { try { rs.close(); } catch (sqlexception e) { e.printstacktrace(); } } } }
2.增删改查
public class dbservice { private connection conn=null; //打开数据库对象 private preparedstatement ps=null;//操作整合sql语句的对象 private resultset rs=null;//查询结果的集合 //dbservice 对象 public static dbservice dbservice=null; /** * 构造方法 私有化 * */ private dbservice(){ } /** * 获取mysql数据库单例类对象 * */ public static dbservice getdbservice(){ if(dbservice==null){ dbservice=new dbservice(); } return dbservice; } /** * 获取要发送短信的患者信息 查 * */ public list<user> getuserdata(){ //结果存放集合 list<user> list=new arraylist<user>(); //mysql 语句 string sql="select * from user"; //获取链接数据库对象 conn= dbopenhelper.getconn(); try { if(conn!=null&&(!conn.isclosed())){ ps= (preparedstatement) conn.preparestatement(sql); if(ps!=null){ rs= ps.executequery(); if(rs!=null){ while(rs.next()){ user u=new user(); u.setid(rs.getstring("id")); u.setname(rs.getstring("name")); u.setphone(rs.getstring("phone")); u.setcontent(rs.getstring("content")); u.setstate(rs.getstring("state")); list.add(u); } } } } } catch (sqlexception e) { e.printstacktrace(); } dbopenhelper.closeall(conn,ps,rs);//关闭相关操作 return list; } /** * 修改数据库中某个对象的状态 改 * */ public int updateuserdata(string phone){ int result=-1; if(!stringutils.isempty(phone)){ //获取链接数据库对象 conn= dbopenhelper.getconn(); //mysql 语句 string sql="update user set state=? where phone=?"; try { boolean closed=conn.isclosed(); if(conn!=null&&(!closed)){ ps= (preparedstatement) conn.preparestatement(sql); ps.setstring(1,"1");//第一个参数state 一定要和上面sql语句字段顺序一致 ps.setstring(2,phone);//第二个参数 phone 一定要和上面sql语句字段顺序一致 result=ps.executeupdate();//返回1 执行成功 } } catch (sqlexception e) { e.printstacktrace(); } } dbopenhelper.closeall(conn,ps);//关闭相关操作 return result; } /** * 批量向数据库插入数据 增 * */ public int insertuserdata(list<user> list){ int result=-1; if((list!=null)&&(list.size()>0)){ //获取链接数据库对象 conn= dbopenhelper.getconn(); //mysql 语句 string sql="insert into user (name,phone,content,state) values (?,?,?,?)"; try { boolean closed=conn.isclosed(); if((conn!=null)&&(!closed)){ for(user user:list){ ps= (preparedstatement) conn.preparestatement(sql); string name=user.getname(); string phone=user.getphone(); string content=user.getcontent(); string state=user.getstate(); ps.setstring(1,name);//第一个参数 name 规则同上 ps.setstring(2,phone);//第二个参数 phone 规则同上 ps.setstring(3,content);//第三个参数 content 规则同上 ps.setstring(4,state);//第四个参数 state 规则同上 result=ps.executeupdate();//返回1 执行成功 } } } catch (sqlexception e) { e.printstacktrace(); } } dbopenhelper.closeall(conn,ps);//关闭相关操作 return result; } /** * 删除数据 删 * */ public int deluserdata(string phone){ int result=-1; if((!stringutils.isempty(phone))&&(phonenumberutils.ismobilenumber(phone))){ //获取链接数据库对象 conn= dbopenhelper.getconn(); //mysql 语句 string sql="delete from user where phone=?"; try { boolean closed=conn.isclosed(); if((conn!=null)&&(!closed)){ ps= (preparedstatement) conn.preparestatement(sql); ps.setstring(1, phone); result=ps.executeupdate();//返回1 执行成功 } } catch (sqlexception e) { e.printstacktrace(); } } dbopenhelper.closeall(conn,ps);//关闭相关操作 return result; } }
到此这篇关于android 连接mysql数据库并进行增删改查操作示例讲解的文章就介绍到这了,更多相关android 连接mysql数据库并进行增删改查操作内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!