连接到 TiDB

TiDB 高度兼容 MySQL 协议,全量的客户端连接参数列表,请参阅 MySQL Client Options

TiDB 支持 MySQL 客户端/服务器协议。这使得大多数客户端驱动程序和 ORM 框架可以像连接到 MySQL 一样地连接到 TiDB。

MySQL Client

你可以使用 MySQL Client 作为 TiDB 的命令行工具。在 MySQL Shell 官方文档 你可以找到不同操作系统的安装方式。在安装完后你可以使用如下命令行连接到 TiDB:

  1. mysql --host <tidb_server_host> --port 4000 -u root -p --comments

注意:MySQL 命令行客户端在 5.7.7 版本之前默认清除了 Optimizer Hints。如果需要在这些早期版本的客户端中使用 Hint 语法,需要在启动客户端时加上 --comments 选项。

JDBC

你可以使用 JDBC 驱动连接到 TiDB,这需要创建一个 MysqlDataSourceMysqlConnectionPoolDataSource 对象(它们都实现了 DataSource 接口),并使用 setURL 函数设置连接字符串。

例如:

  1. MysqlDataSource mysqlDataSource = new MysqlDataSource();
  2. mysqlDataSource.setURL("jdbc:mysql://{host}:{port}/{database}?user={username}&password={password}");

有关 JDBC 连接的更多信息,可参考 JDBC 官方文档

连接参数

参数名 描述
{username} 需要连接到 TiDB 集群的 SQL 用户
{password} 需要连接到 TiDB 集群的 SQL 用户的密码
{host} TiDB 节点运行的 Host>)
{port} TiDB 节点正在监听的端口
{database} (已经存在的)数据库的名称

Hibernate

你可以使用 Hibernate ORM 连接到 TiDB,请将 Hibernate 的配置中的 hibernate.connection.url 设置为合法的 TiDB 连接字符串。

例如,你的配置被写在 hibernate.cfg.xml 文件中,那么你的配置文件应该为:

  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
  8. <property name="hibernate.dialect">org.hibernate.dialect.TiDBDialect</property>
  9. <property name="hibernate.connection.url">jdbc:mysql://{host}:{port}/{database}?user={user}&amp;password={password}</property>
  10. </session-factory>
  11. </hibernate-configuration>

随后,使用代码读取配置文件,从而获得 SessionFactory 对象:

  1. SessionFactory sessionFactory = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();

这里有几个需要注意的点:

  1. 因为使用的配置文件 hibernate.cfg.xml 为 XML 格式,而 & 字符,在 XML 中属于特殊字符,因此,需将 & 更改为 &amp;。即,连接字符串 hibernate.connection.urljdbc:mysql://{host}:{port}/{database}?user={user}&password={password} 改为了 jdbc:mysql://{host}:{port}/{database}?user={user}&amp;password={password}
  2. 在你使用 Hibernate 时,建议使用 TiDB 方言,即 hibernate.dialect 设置为 org.hibernate.dialect.TiDBDialect
  3. Hibernate 在版本 6.0.0.Beta2 及以上可支持 TiDB 方言,因此推荐使用 6.0.0.Beta2 及以上版本的 Hibernate。

更多有关 Hibernate 连接参数的信息,请参阅 Hibernate 官方文档

连接参数

参数名 描述
{username} 需要连接到 TiDB 集群的 SQL 用户
{password} 需要连接到 TiDB 集群的 SQL 用户的密码
{host} TiDB 节点运行的 Host>)
{port} TiDB 节点正在监听的端口
{database} (已经存在的)数据库的名称