MySQL协议,也称为MySQL客户端协议,是一种基于TCP/IP协议的二进制协议。它用于连接MySQL数据库服务器并发送SQL语句。MySQL协议允许客户端与服务器之间交换数据,并通过加密方式实现数据传输的安全性。
JDBC(Java Database Connectivity)协议是Java平台上的数据库连接标准。JDBC允许Java应用程序与多种数据库进行连接和交互,包括MySQL。通过JDBC协议,开发人员可以编写Java代码来执行SQL语句并获取结果。
//示例代码: import java.sql.*; public class Main { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/TEST"; static final String USER = "username"; static final String PASS = "password"; public static void main(String[] args) { Connection conn = null; Statement stmt = null; try{ Class.forName("com.mysql.jdbc.Driver"); conn = DriverManager.getConnection(DB_URL,USER,PASS); stmt = conn.createStatement(); String sql; sql = "SELECT id, name, age FROM Employees"; ResultSet rs = stmt.executeQuery(sql); while(rs.next()){ int id = rs.getInt("id"); String name = rs.getString("name"); int age = rs.getInt("age"); System.out.print("ID: " + id); System.out.print(", Name: " + name); System.out.print(", Age: " + age); System.out.println(); } rs.close(); stmt.close(); conn.close(); } catch(SQLException se) { se.printStackTrace(); } catch(Exception e) { e.printStackTrace(); } finally { try{ if(stmt!=null) stmt.close(); } catch(SQLException se2) { } try{ if(conn!=null) conn.close(); } catch(SQLException se) { se.printStackTrace(); } } } }
以上是一段使用JDBC协议连接MySQL数据库的Java代码示例。代码中使用了MySQL的JDBC驱动程序和数据库连接URL。