From 0e675b5adc79c8bc42c024ff427e47869b61593a Mon Sep 17 00:00:00 2001 From: blikblum Date: Sun, 29 Jan 2012 23:36:15 +0000 Subject: [PATCH] sqliteds: fix compilation with 2.4 and 2.6 fpc compiler git-svn-id: trunk@20194 - --- packages/fcl-db/src/sqlite/customsqliteds.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/fcl-db/src/sqlite/customsqliteds.pas b/packages/fcl-db/src/sqlite/customsqliteds.pas index 06e2517934..6b987f419f 100644 --- a/packages/fcl-db/src/sqlite/customsqliteds.pas +++ b/packages/fcl-db/src/sqlite/customsqliteds.pas @@ -45,6 +45,9 @@ const DefaultStringSize = 255; type + {$ifndef ver2_7} + TRecordBuffer = PAnsiChar; + {$endif} TCustomSqliteDataset = class; PDataRecord = ^DataRecord;