gpt4 book ai didi

c - 使用 sprintf 和 PQexecParams 重用缓冲区指针

转载 作者:太空宇宙 更新时间:2023-11-04 07:18:58 24 4
gpt4 key购买 nike

我正在使用 PQexecParams 函数对 PostgreSQL 数据库执行 sql 请求:

PGresult *PQexecParams(PGconn *conn,
const char *command,
int nParams,
const Oid *paramTypes,
const char * const *paramValues,
const int *paramLengths,
const int *paramFormats,
int resultFormat);

为了传递 paramValues,我使用 sprintf :

sprintf(buffer1, "%d", stats.packets_count);
values2[0] = buffer1;
sprintf(buffer2, "%d", stats.packets_count_gap);
values2[1] = buffer2;
sprintf(buffer3, "%f", stats.packets_mean);
values2[2] = buffer3;
sprintf(buffer4, "%f", stats.variance);
values2[3] = buffer4;
sprintf(buffer5, "%f", stats.square_mean);
values2[4] = buffer5;
sprintf(buffer6, "%f", stats.standard_deviation);
values2[5] = buffer6;
sprintf(buffer7, "%d", stats.is_ddos);
values2[6] = buffer7;
sprintf(buffer8, "%f", stats.threshold);
values2[7] = buffer8;
sprintf(buffer9, "%d", stats.bandwidth);
values2[8] = buffer9;
values2[9] = proto_name;
sprintf(buffer11, "%f", packet_proto_ratio);
values2[10] = buffer11;
sprintf(buffer12, "%f", tcp_sign_ratio);
values2[11] = buffer12;
sprintf(buffer13, "%d", inflow_outflow_gap);
values2[12] = buffer13;
sprintf(buffer14, "%f", bandwidth_ratio);
values2[13] = buffer14;

这是请求:

result = PQexecParams(psql, "INSERT INTO statistics (packets_count, packets_count_gap,  mean, variance, square_mean, standard_deviation, is_ddos, date, threshold, bandwidth, protocol, packet_proto_ratio, tcp_sign_ratio, inflow_outflow_gap, bandwidth_ratio) VALUES ($1, $2, $3, $4, $5, $6, $7, now(), $8, $9, $10, $11, $12, $13, $14);", 14, NULL, values2, lengths2, NULL, 0);

但这样做感觉真的很脏,有没有办法重用单个缓冲区指针?因为我的代码中有几个地方需要执行 sql 请求,所以我最终得到了很多缓冲区。

谢谢!

最佳答案

每个缓冲区指向一个单独的内存块,其中有一个单独的值。所以不,你不能重复使用它们。在您将它们发送到 PostgreSQL 服务器之前,它们都必须保持有效和完整。

如果您知道整个数据集有多大,您可以做的是分配一个 缓冲区。然后,每当向其追加数据时,将写指针前进写入的数据长度。因此,values 数组中的所有指针都指向同一客户端缓冲区的不同的、不重叠的部分。

这很简单,因为 sprintf 返回打印的字符数,不包括空终止符。

关于c - 使用 sprintf 和 PQexecParams 重用缓冲区指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22629833/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com