From 23b2d8badd89d2a07f814f6e0c8b3a7bd8a58776 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 23 May 2016 18:55:26 +0000 Subject: [PATCH] Fix wrong FLOAT data type mapping between DB.TFieldType and TDBDatatypeIndex, in TAdoDBQuery.Execute. See http://www.heidisql.com/forum.php?t=21306 --- source/dbconnection.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dbconnection.pas b/source/dbconnection.pas index 3112e1a9..a87cfde8 100644 --- a/source/dbconnection.pas +++ b/source/dbconnection.pas @@ -5525,7 +5525,7 @@ begin ftVarBytes: TypeIndex := dtVarbinary; ftFloat: - TypeIndex := dtEnum; + TypeIndex := dtFloat; ftDate: TypeIndex := dtDate; ftTime: