任何人都可以請幫我解決這個問題,即使在我的程序中刪除@ localhost之前我無法運行它...這次它給我的錯誤爲.. 「Exception in線程 「主要」 值java.sql.SQLException:IO異常:網絡適配器無法建立連接「在線程主例外:IO異常
import java.sql.*;
class CreatingTable{
public static void main(String[] ar) throws Exception {
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
Connection con = DriverManager.getConnection("jdbc:oracle:thin:localhost:1521:xe","priyanka","java");
Statement stmt=con.createStatement();
int students=stmt.executeUpdate("create table class(name varchar2(20),rollno number(20)");
con.close();
}
}
你爲什麼刪除它?它是[連接字符串語法](http://www.orafaq.com/wiki/JDBC)的一部分... – A4L
您正在使用哪個操作系統? –
它的Windows Vista – user3203749