一台MySql服务器不同数据库之间数据同步_解决方案(Java)
原创!
前提:目前MySql数据库中有两个数据库,名称分别为:db01和db02。db01中的人员表叫t_user_info;db02中的人员表叫t_user。需求:将表t_user_info(id,name,type,content,createtime)的数据导入到表t_use( userid,username,usertype, usercontent,user createtime)中。
第一步:运用JDBC建立数据源
/**
* JDBC连接数据库(db01) bgy
* @return Connection
*/
public static Connection getConnection01() throws SQLException,java.lang.ClassNotFoundException
{
//第一步:加载MySQL的JDBC的驱动
Class.forName(“com.mysql.jdbc.Driver”);
//取得连接的url,能访问MySQL数据库的用户名,密码;db01:数据库名
String url = “jdbc:mysql://192.168.88.1:3306/db01”;
String username = “bgy01”;
String password = “123456”;
//第二步:创建与MySQL数据库的连接类的实例
Connection con01 = (Connection) DriverManager.getConnection(url, username, password);
return con01;
}
/**
* JDBC连接数据库(db02) bgy
* @return Connection
*/
public static Connection getConnection02() throws SQLException,java.lang.ClassNotFoundException
{
//第一步:加载MySQL的JDBC的驱动
Class.forName(“com.mysql.jdbc.Driver”);
//取得连接的url,能访问MySQL数据库的用户名,密码;db02:数据库名
String url = “jdbc:mysql://192.168.88.2:3306/db02”;
String username = “bgy02”;
String password = “123456”;
//第二步:创建与MySQL数据库的连接类的实例
Connection con02 = (Connection) DriverManager.getConnection(url, username, password);
return con02;
}
第二步:同步数据实现详细(方法dSynchronous())
/**
* 同步数据 bgy
* @return String
* @throws ClassNotFoundException
* @throws SQLException
*/
public String dSynchronous() throws SQLException, ClassNotFoundException
{
//前台传来值
String param = request.getParameter(“param”);
try
{
//设置“db01”数据源
Connection con01 = getConnection01();
Statement sql_statement01 = (Statement) con01.createStatement();
//设置“db02”数据源
Connection con02 = getConnection02();
Statement sql_statement02 = (Statement) con02.createStatement();
//人员信息1
if(“1”.equals(param))
{
//定位至db01
sql_statement01.executeUpdate(“use db01”);
//定位至db02
sql_statement02.executeUpdate(“use db02”);
//删除“db02”用户表t_user的数据
String query1 = “TRUNCATE TABLE t_user;”; //TRUNCATE比DELETE效率高太多
sql_statement02.executeUpdate(query1);
String query2 = “ALTER TABLE t_user AUTO_INCREMENT=1;”; //自增序列设为1
sql_statement02.executeUpdate(query2);
//向“db02”用户表t_user插入数据
int tag = sql_statement02.executeUpdate(“INSERT INTO db02.t_user (id, name,type,content,createtime) SELECT userid, username, usertype, usercontent, usercreatetime FROM db01.t_user_info”);
String jsondata = null;
if(tag > 0)
{
jsondata = “{\’flag\’:\’ok\’}”;
}
else
{
jsondata = “{\’flag\’:\’error\’}”;
}
}
//“其余”
if(“2”.equals(param))
{
//业务逻辑代码
}
//“其余”
else
{
//业务逻辑代码
}
//关闭数据源
sql_statement01.close();
conWly.close();
sql_statement02.close();
conYxl.close();
}
catch(java.lang.ClassNotFoundException e)
{
//加载JDBC错误,所要用的驱动没有找到
System.err.print(“ClassNotFoundException”);
//其他错误
System.err.println(e.getMessage());
}
catch(SQLException ex)
{
//显示数据库连接错误或查询错误
System.err.println(“SQLException: ” + ex.getMessage());
}
return SUCCESS;
}