Code: Select all
UniConnection.ProviderName := 'Access';
UniConnection.Database := 'c:\temp\database.mdb';
UniConnection.SpecificOptions.Values['ForceCreateDatabase'] := 'True';
UniConnection.SpecificOptions.Values['DriverVersion'] := 'dvAuto';
UniConnection.Connect;
Code: Select all
UniConnection.ProviderName := 'Access';
UniConnection.Database := 'c:\temp\database.accdb';
UniConnection.SpecificOptions.Values['ForceCreateDatabase'] := 'True';
UniConnection.SpecificOptions.Values['DriverVersion'] := 'dvAccdb';
UniConnection.Connect;I have verified that TUniConnection can open the 2007 Access DB format for which I created the file with Access 2016. It just looks like it can't create it with Delphi.
Is there something else that I can do to get this to create a newer Access DB format.