From b9d7f62cead50ef521bb92ff11f7a3706167794d Mon Sep 17 00:00:00 2001 From: fehervari Date: Tue, 21 Sep 2021 20:04:39 +0200 Subject: [PATCH] Update DataBaseSQLLite.ahk If you specify the type of the values, the result is empty. Its a typo. If you use a not specified records like a big number, what you want to store in text format, can be stored badly, because is out of integer range. --- Lib/DataBaseSQLLite.ahk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/DataBaseSQLLite.ahk b/Lib/DataBaseSQLLite.ahk index 080269d..91278c9 100644 --- a/Lib/DataBaseSQLLite.ahk +++ b/Lib/DataBaseSQLLite.ahk @@ -166,7 +166,7 @@ class DataBaseSQLLite extends DBA.DataBase { if (columns.HasKey(row.name)){ ;MsgBox,0,Error, % "row name found: " row.name "`nTypes: " row.type ; #DEBUG - types[columns[row.name]] := row.types + types[columns[row.name]] := row.type } }