ddbc icon indicating copy to clipboard operation
ddbc copied to clipboard

DDBC is DB Connector for D language (similar to JDBC)

Results 18 ddbc issues
Sort by recently updated
recently updated
newest added

Hey, I am new to D-lang, any idea how to add `trusted_connection=yes` and `ODBC Driver 17 for SQL Server` to a connection string? Is this supported or does this require...

ODBC

receive exception ``` 2020-02-12T11:52:50.484:pgsqlddbc.d:executeUpdate:670 INSERT INTO custom_table(firstname,lastname) VALUES ('TestFirstname','TestLastname') std.variant.VariantException@std/variant.d(1545): Attempt to use an uninitialized VariantN ---------------- ??:? long std.variant.VariantN!(32uL).VariantN.handler!(void).handler(std.variant.VariantN!(32uL).VariantN.OpID, ubyte[32]*, void*) [0x18f46946] ??:? [0xa646ad0] ??:? [0xa6436d6] ??:? [0xa642e54] ??:?...

as per https://github.com/buggins/ddbc/pull/92#issuecomment-770203976 I think it's worth having the project split into sub packages, so there's something like: ddbc:core ddbc:drivers ddbc:pods (or perhaps ddbc:uda?) initially just so that the pod...

Hey there! I belong to an open source security research community, and a member (@sudheendra17) has found an issue, but doesn’t know the best way to disclose it. If not...

Does anyone know where to get proper 64 bit version of libpq.dll?

bug
Windows

Does anyone have any idea what causes this? I can't seem to figure it out as libpq.dll is located within the folder of the executable. I'm on Windows and compiled...

Windows

https://github.com/buggins/ddbc/blob/cb72071bbe0ce089204e40d88ef71b6f605852c3/source/ddbc/pods.d#L1094 how to use update from struct in pgsql ? ``` struct user { size_t id; string name; } user u; u.id = 1; u.name = "Test"; ``` `stmt.update!user(u); `...

bug
Postgres

Hi, when using the odbc driver with an Oracle database my program crashed with an exception ("Type 3 not supported"). I could fix this by adding a case to the...

ODBC
SQL Server

during ODBC testing a created a table with some columns as NVARCHAR but the driver didn't recognise the type so I had to resort to using VARCHAR to get things...

ODBC
SQL Server