strings arent always zero terminated

This commit is contained in:
Adam D. Ruppe 2016-09-05 08:49:49 -04:00
parent a24932d385
commit c93d9af97b
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ class MsSql : Database {
enforce(returned == SQL_SUCCESS); enforce(returned == SQL_SUCCESS);
returned = SQLExecDirect(statement, cast(ubyte*)sql.ptr, SQL_NTS); returned = SQLExecDirect(statement, cast(ubyte*)sql.ptr, cast(SQLINTEGER) sql.length);
if(returned != SQL_SUCCESS) if(returned != SQL_SUCCESS)
throw new DatabaseException(getSQLError(SQL_HANDLE_STMT, statement)); throw new DatabaseException(getSQLError(SQL_HANDLE_STMT, statement));