Moin zusammen,
ich habe ein kleines Problem mit dem Erstellen einer Firebird 4 Datenbank und einer PageSize Größe von 32768.
Folgenes führe ich zum Erstellen der Datenbank unter Delphi 11.2 (aktueller Patch ist drin) aus:
Delphi-Quellcode:
lFirebirdDataModule := TFireDACDataModule.Create(
nil);
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).Server := '
localhost';
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).Port := 3050;
lFirebirdDataModule.FDConnection.Params.Database := '
Test';
lFirebirdDataModule.FDConnection.Params.UserName := '
SYSDBA';
lFirebirdDataModule.FDConnection.Params.Password := '
firebird';
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).CharacterSet := TIBCharacterSet.csUTF8;
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).ExtendedMetadata := True;
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).OpenMode := TIBOpenMode.omOpen;
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).PageSize := ps32768;
// <- funktioniert nicht
//TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).PageSize := ps16384; // <- funktioniert
TFDPhysFBConnectionDefParams(lFirebirdDataModule.FDConnection.Params).OpenMode := TIBOpenMode.omCreate;
lFirebirdDataModule.FDConnection.Open();
lFirebirdDataModule.FDConnection.Close;
lFirebirdDataModule.Free;
Am Ende habe ich eine Datenbank mit einer Pagesize von 8192 (Default). Setze ich die PageSize auf 16384 wird die Datenbnak auch mit der korrekten Größe angelegt.
Führe ich ein
Code:
CREATE DATABASE xyz PAGE_SIZE 32768
manuell mit isql aus, bekomme ich eine Datenbank mit der gewünschten PageSize erstellt.
Hat jemand einen Tipp, was ich falsch mache oder ist das vielleicht sogar noch ein Bug in FireDAC?
Viele Grüße und eine schönes Wochenende
Wer sucht, der findet. Wer länger sucht, findet mehr.