2013-03-13 39 views

回答

1

我發現這個代碼,就像PSQL:

public void ejecutarScript(String file) throws IOException, SQLException { 
    Statement st3 = conexion.createStatement(); 
    BufferedReader in = new BufferedReader(new FileReader(file)); 
    String str; 
    StringBuffer sb = new StringBuffer(); 
    while ((str = in.readLine()) != null) { 
     sb.append(str + "\n "); 
    } 
    in.close(); 
    st3.executeUpdate(sb.toString()); 
} 
1

與其他SQL腳本一樣,只要確保已將對話設置爲PSQL即可。如果您使用JDBC確保您使用的司機發現here