Adam Wilson
Adam Wilson
Given: auto rng = new AutoSeededRNG(); auto ecg = ECGroup("secp384r1"); auto key = ECDHPrivateKey(rng, ecg); auto privKey = key.m_priv; auto pubKey = cast(ECPublicKey)key.m_priv; This will fail for public keys: import...
I don't know any other way to ask, but are there any examples of using this library for reading and writing HTTP2 requests? I am finding it difficult to use...
object.Exception@C:\Users\AdamWilson\AppData\Local\dub\packages\ddbc-0.5.7\ddbc\source\ddbc\drivers\odbcddbc.d(949): TYPE -7 is currently not supported! ---------------- 0x00007FF77114AC87 in d_throwc 0x00007FF770F5E4E2 in ddbc.drivers.odbcddbc.ODBCStatement.ColumnInfo.readValueAsVariant at C:\D\dmd2\windows\bin64\..\..\src\druntime\import\object.d(2720) 0x00007FF770F5E058 in ddbc.drivers.odbcddbc.ODBCStatement.ColumnInfo.read at C:\Users\AdamWilson\AppData\Local\dub\packages\ddbc-0.5.7\ddbc\source\ddbc\drivers\odbcddbc.d(809) 0x00007FF770F9E767 in ddbc.drivers.odbcddbc.ODBCStatement.fetch.__lambda2 at C:\Users\AdamWilson\AppData\Local\dub\packages\ddbc-0.5.7\ddbc\source\ddbc\drivers\odbcddbc.d(768) 0x00007FF770F77B97 in ddbc.drivers.odbcddbc.ODBCStatement.fetch.each!(ddbc.drivers.odbcddbc.ODBCStatement.ColumnInfo[]).each at...
Using the latest ODBC 17 Driver from Microsoft, the following error occurs when attempting to read a query ResultSet that contains a column of type VARCHAR. (n) or (MAX) does...
@thewilsonator As requested.
@thewilsonator @rikkimax Depends on this PR being merged: https://github.com/dlang/dmd/pull/16422
The following struct in C: ```c // bug.i typedef struct tagTIME_STRUCT { int hour; int minute; int second; } TIME_STRUCT; ``` Produces the following output snippet in ImportC in file...