使用 postgres rust 驱动,文档 https://docs.rs/postgres/latest/postgres/,
查询出来的结果,如果是知道当前表结构,可以使用 row.get 方法获取,代码如下:
let records = client.query("SELECT table_schema, table_catalog,table_name FROM information_schema.tables ");
for row in records.iter() {
let table_schema: &str = row.get(0);
let table_catalog: &str = row.get(1);
let table_name: &str = row.get(2);
result.push(PgTable {
table_schema: String::from(table_schema),
table_catalog: String::from(table_catalog),
table_name: String::from(table_name),
});
}
但是现在的需求是不知道每张表每列的数据类型和列名字,只能使用 select * 语句,该怎么序列化查询得到的records 对象。
let records = client.query("SELECT * From sometable ");
// 怎么序列化 records
Cargo.toml:
然后: