From a07fb24c1e2191fc6434c55786c7fba5a407af98 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 2 Jul 2020 09:39:52 -0400 Subject: [PATCH] =?UTF-8?q?scope=20issue=20fix=20thanks=20to=20=D0=AE?= =?UTF-8?q?=D1=80=D0=B8=D0=B9=20=D0=9A=D1=83=D0=B4=D0=B8=D0=BD=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mssql.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mssql.d b/mssql.d index c091c5e..fd56768 100644 --- a/mssql.d +++ b/mssql.d @@ -158,11 +158,11 @@ class MsSqlResult : ResultSet { r.resultSet = this; string[] row; - SQLLEN ptr; - for(int i = 0; i < numFields; i++) { string a; + SQLLEN ptr; + more: SQLCHAR[1024] buf; if(SQLGetData(statement, cast(ushort)(i+1), SQL_CHAR, buf.ptr, 1024, &ptr) != SQL_SUCCESS)