62,621
社区成员
发帖
与我相关
我的任务
分享
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection c = DriverManager.getConnection("jdbc:odbc:ClothingSale","sa","");
Statement s = c.createStatement();
c.close();
s.execute("RESTORE FILELISTONLY FROM DISK = 'D:\\ClothingSale.bak'");
s.execute("RESTORE DATABASE ClothingSale FROM DISK = 'D:\\ClothingSale.bak'"
+"WITH MOVE 'ClothingSale' TO 'D:\\ClothingSale_Data.mdf',MOVE 'ClothingSale_log' TO 'D:\\ClothingSale.ldf'");
JOptionPane.showMessageDialog(null,"恢复成功");
s.close();
}
catch(Exception ex){
System.out.println(ex.getMessage());
}