error message

This commit is contained in:
Adam D. Ruppe 2016-04-13 15:27:50 -04:00
parent 34e27ab449
commit c6f83abe14
1 changed files with 1 additions and 1 deletions

View File

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