Java JDBC数据源连接MySQL示例

x33g5p2x  于2022-10-06 转载在 Java  
字(2.3k)|赞(0)|评价(0)|浏览(781)

在这篇文章中,我们将向你展示如何创建和使用DataSource对象,在不使用JNDI服务的情况下获得对数据源的连接。

JAR的依赖性

https://dev.mysql.com/downloads/connector/j/下载MySQL JDBC驱动,并添加到你项目的构建路径中。

使用的技术

  1. JDK - 1.8或更高版本
  2. MySQL - 5.7.12
  3. IDE - Eclipse Neon
  4. JDBC API - 4.2

JDBC数据源+MySQL实例

下面的例子演示了如何从MySQL数据源中获得一个连接。同时,我们将使用Statement接口创建一个雇员表。

  1. package com.javaguides.jdbc.statement.examples.packages;
  2. import java.sql.Connection;
  3. import java.sql.SQLException;
  4. import java.sql.Statement;
  5. import javax.sql.DataSource;
  6. import com.mysql.jdbc.jdbc2.optional.MysqlDataSource;
  7. /**
  8. * JDBC MysqlDataSource Example
  9. * @author Ramesh Fadatare
  10. *
  11. */
  12. public class DataSourceExample {
  13. private static final String createTableSQL = "create table employee (\r\n" + " id int(3) primary key,\r\n" +
  14. " name varchar(20),\r\n" + " email varchar(20),\r\n" + " country varchar(20),\r\n" +
  15. " password varchar(20)\r\n" + " );";
  16. private static DataSource getMySQLDatasource() {
  17. MysqlDataSource dataSource = new MysqlDataSource();
  18. // Set dataSource Properties
  19. dataSource.setServerName("localhost");
  20. dataSource.setPortNumber(3306);
  21. dataSource.setDatabaseName("mysql_database");
  22. dataSource.setUser("root");
  23. dataSource.setPassword("root");
  24. return dataSource;
  25. }
  26. public static void main(String[] argv) throws SQLException {
  27. DataSourceExample dataSourceExample = new DataSourceExample();
  28. dataSourceExample.createTable();
  29. }
  30. public void createTable() throws SQLException {
  31. System.out.println(createTableSQL);
  32. // Step 1: Establishing a Connection
  33. try (Connection connection = getMySQLDatasource().getConnection();
  34. // Step 2:Create a statement using connection object
  35. Statement statement = connection.createStatement();) {
  36. // Step 3: Execute the query or update query
  37. statement.execute(createTableSQL);
  38. } catch (SQLException e) {
  39. // print SQL exception information
  40. printSQLException(e);
  41. }
  42. // Step 4: try-with-resource statement will auto close the connection.
  43. }
  44. public static void printSQLException(SQLException ex) {
  45. for (Throwable e: ex) {
  46. if (e instanceof SQLException) {
  47. // e.printStackTrace(System.err);
  48. System.err.println("SQLState: " + ((SQLException) e).getSQLState());
  49. System.err.println("Error Code: " + ((SQLException) e).getErrorCode());
  50. System.err.println("Message: " + e.getMessage());
  51. Throwable t = ex.getCause();
  52. while (t != null) {
  53. System.out.println("Cause: " + t);
  54. t = t.getCause();
  55. }
  56. }
  57. }
  58. }
  59. }

输出:

  1. create table employee (
  2. id int(3) primary key,
  3. name varchar(20),
  4. email varchar(20),
  5. country varchar(20),
  6. password varchar(20)
  7. );

相关文章

最新文章

更多