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:
csmith1991 2015-04-20 10:10:44 -04:00
parent ed9fb7ea6d
commit c16afbf296
1 changed files with 3 additions and 3 deletions

View File

@ -155,7 +155,7 @@ class MsSqlResult : ResultSet {
string a; string a;
more: more:
SQLCHAR buf[255]; SQLCHAR[255] buf;
if(SQLGetData(statement, cast(ushort)(i+1), SQL_CHAR, buf.ptr, 255, &ptr) != SQL_SUCCESS) 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)); throw new DatabaseException("get data: " ~ getSQLError(SQL_HANDLE_STMT, statement));
@ -202,8 +202,8 @@ class MsSqlResult : ResultSet {
private string getSQLError(short handletype, SQLHANDLE handle) private string getSQLError(short handletype, SQLHANDLE handle)
{ {
char sqlstate[32]; char[32] sqlstate;
char message[256]; char[256] message;
SQLINTEGER nativeerror=0; SQLINTEGER nativeerror=0;
SQLSMALLINT textlen=0; SQLSMALLINT textlen=0;
auto ret = SQLGetDiagRec(handletype, handle, 1, auto ret = SQLGetDiagRec(handletype, handle, 1,