You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
12 lines
507 B
Plaintext
Vendored
12 lines
507 B
Plaintext
Vendored
If OPI_Tools.IsWindows() Then
|
|
Extension = "https://hut.openintegrations.dev/test_data/uuid.dll"; // URL, Path or Binary Data
|
|
Else
|
|
Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data
|
|
EndIf;
|
|
|
|
Base = "C:\Users\bayse\AppData\Local\Temp\v8_2B38_2c.sqlite";
|
|
EntryPoint = "sqlite3_uuid_init";
|
|
|
|
Connection = OPI_SQLite.CreateConnection(Base);
|
|
Result = OPI_SQLite.ConnectExtension(Extension, EntryPoint, Connection);
|