我正在尝试使用JDBC连接器连接到mssql,如何在Xcode 4.2中使用,或者在命令提示符下,我现在正在使用OSX 10.7.3 那里有任何样例。
答案 0 :(得分:0)
本教程有详细说明:http://www.vogella.com/articles/MySQLJava/article.html。该网站非常棒,还有许多其他很棒的教程!
简而言之:
Class.forName("com.mysql.jdbc.Driver");
connect = DriverManager.getConnection("jdbc:mysql://localhost/dbname?user=sqluser&password=sqluserpw");
statement = connect.createStatement();
resultSet = statement.executeQuery("SELECT * FROM dbname.tablename");
这是你需要的吗?