📄 extractsqlexceptioninfo.java
字号:
import java.sql.*;public class ExtractSQLExceptionInfo { public static void main(String[] args) { String url = "jdbc:cloudscape:Wrox4370.db"; String driver = "COM.cloudscape.core.JDBCDriver"; String username = "guest"; String password = "guest"; String theStatement = "SELECT recordingid, recordingtitle, coverimagefilespec FROM rekordings"; // intentional misspelling to generate exception try { Class.forName(driver); Connection connection = DriverManager.getConnection(url, username, password); Statement queryRecordings = connection.createStatement(); ResultSet theResults = queryRecordings.executeQuery(theStatement); queryRecordings.close(); } catch (ClassNotFoundException cnfe) { System.err.println(cnfe); } catch (SQLException sqle) { String sqlMessage = sqle.getMessage(); String sqlState = sqle.getSQLState(); int vendorCode = sqle.getErrorCode(); System.err.println("Exception occurred:"); System.err.println("Message: " + sqlMessage); System.err.println("SQL state: " + sqlState); System.err.println("Vendor code: " + vendorCode + "\n----------------"); } } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -