mirror of https://github.com/adamdruppe/arsd.git
update mssql.d
C-like array usage was stopping compilation (at least within dub). This also needs fixed in `win32.sqltypes`
This commit is contained in:
parent
ed9fb7ea6d
commit
c16afbf296
6
mssql.d
6
mssql.d
|
@ -155,7 +155,7 @@ class MsSqlResult : ResultSet {
|
|||
string a;
|
||||
|
||||
more:
|
||||
SQLCHAR buf[255];
|
||||
SQLCHAR[255] buf;
|
||||
if(SQLGetData(statement, cast(ushort)(i+1), SQL_CHAR, buf.ptr, 255, &ptr) != SQL_SUCCESS)
|
||||
throw new DatabaseException("get data: " ~ getSQLError(SQL_HANDLE_STMT, statement));
|
||||
|
||||
|
@ -202,8 +202,8 @@ class MsSqlResult : ResultSet {
|
|||
|
||||
private string getSQLError(short handletype, SQLHANDLE handle)
|
||||
{
|
||||
char sqlstate[32];
|
||||
char message[256];
|
||||
char[32] sqlstate;
|
||||
char[256] message;
|
||||
SQLINTEGER nativeerror=0;
|
||||
SQLSMALLINT textlen=0;
|
||||
auto ret = SQLGetDiagRec(handletype, handle, 1,
|
||||
|
|
Loading…
Reference in New Issue