Merge pull request #448 from rodevasia/patch-1

Fix for error at string to char* conversion in `executePreparedStatement` in Postgres.d
This commit is contained in:
Adam D. Ruppe 2024-08-05 16:04:20 -04:00 committed by GitHub
commit c58afec041
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -85,16 +85,17 @@ class PostgreSql : Database {
*/ */
ResultSet executePreparedStatement(T...)(string name, T args) { ResultSet executePreparedStatement(T...)(string name, T args) {
char*[args.length] argsStrings; const(char)*[args.length] argsStrings;
foreach(idx, arg; args) { foreach(idx, arg; args) {
// FIXME: optimize to remove allocations here // FIXME: optimize to remove allocations here
import std.conv;
static if(!is(typeof(arg) == typeof(null))) static if(!is(typeof(arg) == typeof(null)))
argsStrings[idx] = toStringz(to!string(arg)); argsStrings[idx] = toStringz(to!string(arg));
// else make it null // else make it null
} }
auto res = PQexecPrepared(conn, toStringz(name), argsStrings.length, argStrings.ptr, 0, null, 0); auto res = PQexecPrepared(conn, toStringz(name), argsStrings.length, argsStrings.ptr, null, null, 0);
int ress = PQresultStatus(res); int ress = PQresultStatus(res);
if(ress != PGRES_TUPLES_OK if(ress != PGRES_TUPLES_OK