You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
12 lines
449 B
Plaintext
Vendored
12 lines
449 B
Plaintext
Vendored
If OPI_Tools.IsWindows() Then
|
|
Extension = FunctionParameters["SQLite_Ext"]; // URL, Path or Binary Data
|
|
Else
|
|
Extension = FunctionParameters["SQLite_ExtLinux"]; // URL, Path or Binary Data
|
|
EndIf;
|
|
|
|
Base = FunctionParameters["SQLite_DB"];
|
|
EntryPoint = "sqlite3_uuid_init";
|
|
|
|
Connection = OPI_SQLite.CreateConnection(Base);
|
|
Result = OPI_SQLite.ConnectExtension(Extension, EntryPoint, Connection);
|