Page 1 of 1

Re: Unifizz with Unidac Sqlite

Posted: Thu 13 May 2021 14:17
by MaximG
UniDAC allows loading extensions. The following code fragment shows how to load 'unifizz.dll' :

Code: Select all

 ...
  UniConnection.ProviderName := 'SQLite';
  UniConnection.SpecificOptions.Values['Direct'] := 'True';
  UniConnection.SpecificOptions.Values['EnableLoadExtension'] := 'True';
  UniConnection.Connect;
  UniConnection.ExecSQL('SELECT load_extension(''unifizz.dll'')')
 ...