From bce9758e32d0c3029a26efb486a342ff05f6df72 Mon Sep 17 00:00:00 2001 From: znone <glyc@sina.com.cn> Date: Sat, 27 Feb 2021 12:57:25 +0000 Subject: [PATCH] PostgreSQL: support array type --- README_CN.md | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README_CN.md b/README_CN.md index c44f017..2bfe98c 100644 --- a/README_CN.md +++ b/README_CN.md @@ -411,13 +411,14 @@ | smallint | int16_t | | bigint | int64_t | | real | float | -| DOUBLE | double | +| double | double | | text | const char*<br>std::string | | bytea | qtl::const_blob_data<br>std::vector<uint8_t> | | oid | qtl::postgres::large_object | | date | qtl::postgres::date | | timestamp | qtl::postgres::timestamp | | interval | qtl::postgres::interval | +| array | std::vector | ### PostgreSQL的字段数据绑定 @@ -428,13 +429,14 @@ | smallint | int16_t | | bigint | int64_t | | real | float | -| DOUBLE | double | +| double | double | | text | char[N]<br>std::array<char, N><br>std::string | | bytea | qtl::const_blob_data<br>qtl::blob_data<br>std::vector<uint8_t> | | oid | qtl::postgres::large_object | | date | qtl::postgres::date | | timestamp | qtl::postgres::timestamp | | interval | qtl::postgres::interval | +| array | std::vector | ### ODBC相关的C++类 - qtl::postgres::database -- Gitblit v1.9.3