首页 > TAG信息列表 > kingbase8
通过jmeter连接人大金仓数据库
1. 概要 在“配置元件”中添加“JDBC Connection Configuration”。配置如下图: 2. 重点:配置人大金仓数据库连接 下面着重介绍人大金仓数据库连接配置: Database URL输入:jdbc:kingbase8://192.132.180.101:54321/hj_yc (备注:应输入 jdbc:kingbase8://IP:金仓kingbase连接报错The authentication type 10 is not supported. Check that you have configured the sys_hb
原文链接: https://developer.aliyun.com/article/976306 https://blog.csdn.net/weixin_44480167/article/details/120987851 The authentication type 10 is not supported. Check that you have configured the sys_hba.conf file to include the client's IP address or三、springboot集成金仓数据库
1、数据库中创建表 CREATE TABLE TEST_BLOCK_T ( BLOCK_ID varchar(10 char) PRIMARY KEY, --编码 BLOCK_NAME varchar(200 char) --名称 ); Insert into TEST_BLOCK_T (BLOCK_ID, BLOCK_NAME)Values('1', '哈哈哈')