Browse Source

sqliteds: fix compilation with 2.4 and 2.6 fpc compiler

git-svn-id: trunk@20194 -
blikblum 13 years ago
parent
commit
0e675b5adc
1 changed files with 3 additions and 0 deletions
  1. 3 0
      packages/fcl-db/src/sqlite/customsqliteds.pas

+ 3 - 0
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;