Bài 5. Jmeter làm việc với Postges
- Bài này mình sẽ hướng dẫn các làm việc với Postgres sử dụng jmeter
- Bước 1 => download file postgresql-42.5.1.jar => sau khi download coppy vào thư mục lib của Jmeter -Bước 2: Create JDBC Connection Configuration
chuỗi connection tới postgress:
- cấu trúc tổng quát : jdbc:postgresql://{host}[:{port}]/[{database}]
- mình kết nối với local => jdbc:postgresql://localhost:5432/postgres
- jdbc driver class => chọn org.postgresql.Driver
Bước 3: tạo JDBC Request
-
câu lệnh select
-
Variable Name of Pool => chính là tên JDBC connection cấu hình ở trên
-
SQL Query => là nơi để viết câu lệnh SQL
-
câu lênh insert
kết quả run:
All rights reserved