无法将 JDBC 连接到 SQL 服务器?
Posted
技术标签:
【中文标题】无法将 JDBC 连接到 SQL 服务器?【英文标题】:cant connect JDBC to SQL sever? 【发布时间】:2013-01-03 08:17:25 【问题描述】:我正在尝试连接到我在 SQL sever 2008 中创建的本地数据库,但我已经尝试了所有方法,但出现了同样的错误,我已在数据库资源管理器中连接,但需要从我的应用程序连接到数据库以进行注册页面并登录。这是我的错误:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (classFileParser.cpp:3470), pid=5644, tid=5492
# Error: ShouldNotReachHere()
#
# JRE version: 7.0-b147
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0-b17 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# C:\Users\christiej\workspace\MainActivity\hs_err_pid5644.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
#
这是我的代码:
public class Example
public static void main (String[] args) throws SQLException, ClassNotFoundException
Class.forName("com.sqlserver.jdbc.Driver"); // Setup the connection with the DB
Connection connect = DriverManager.getConnection("jdbc:sqlserver://192.168.0.13:1433/Risk_ProfilingV2","sa","Dsolve01#");
// Statements allow to issue SQL queries to the database
java.sql.Statement statement = connect.createStatement();
// Result set get the result of the SQL query
ResultSet resultSet = null;
try
resultSet = statement.executeQuery("select * from User_Table");
catch (SQLException e)
// TODO Auto-generated catch block
e.printStackTrace();
while (resultSet.next()) //retrieve data
String data = resultSet.getString("User_Name");
【问题讨论】:
清理项目并右键单击项目然后单击 Runas 选项然后选择您的项目类型..我希望它能解决问题.. android 标签是怎么回事? 升级到 Java 7 更新 10 并重试。 【参考方案1】:这个类似的问题有一个有用的答案: Fatal error by Java runtime environment
指向此页面: http://dtmilano.blogspot.com/2008/11/android-testing-on-android-platform.html
【讨论】:
以上是关于无法将 JDBC 连接到 SQL 服务器?的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 JDBC 驱动程序和 sql2o 连接到我的 Posgres 服务器
无法将 jdbc 连接到 sql server 2008 r2