You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-23 22:05:15 +02:00
Main build (Jenkins)
This commit is contained in:
2
docs/en/examples/SQLite/AddRecords.txt
vendored
2
docs/en/examples/SQLite/AddRecords.txt
vendored
@@ -4,7 +4,7 @@
|
||||
PictureFile = GetTempFileName("png");
|
||||
Image.Write(PictureFile); // PictureFile - File to disk
|
||||
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
DataArray = New Array;
|
||||
|
||||
2
docs/en/examples/SQLite/AddTableColumn.txt
vendored
2
docs/en/examples/SQLite/AddTableColumn.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
Name = "new_col";
|
||||
DataType = "TEXT";
|
||||
|
||||
2
docs/en/examples/SQLite/ClearTable.txt
vendored
2
docs/en/examples/SQLite/ClearTable.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Result = OPI_SQLite.ClearTable(Table, Base);
|
||||
|
||||
2
docs/en/examples/SQLite/ConnectExtension.txt
vendored
2
docs/en/examples/SQLite/ConnectExtension.txt
vendored
@@ -4,7 +4,7 @@
|
||||
Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data
|
||||
EndIf;
|
||||
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
EntryPoint = "sqlite3_uuid_init";
|
||||
|
||||
Connection = OPI_SQLite.CreateConnection(Base);
|
||||
|
||||
2
docs/en/examples/SQLite/CreateTable.txt
vendored
2
docs/en/examples/SQLite/CreateTable.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
ColoumnsStruct = New Structure;
|
||||
|
||||
2
docs/en/examples/SQLite/DeleteRecords.txt
vendored
2
docs/en/examples/SQLite/DeleteRecords.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Filters = New Array;
|
||||
|
||||
2
docs/en/examples/SQLite/DeleteTable.txt
vendored
2
docs/en/examples/SQLite/DeleteTable.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Result = OPI_SQLite.DeleteTable(Table, Base);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
Name = "new_col";
|
||||
|
||||
|
||||
2
docs/en/examples/SQLite/EnsureTable.txt
vendored
2
docs/en/examples/SQLite/EnsureTable.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
|
||||
Table = "test";
|
||||
|
||||
|
||||
2
docs/en/examples/SQLite/GetRecords.txt
vendored
2
docs/en/examples/SQLite/GetRecords.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Fields = New Array;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Result = OPI_SQLite.GetTableInformation(Table, Base);
|
||||
|
||||
2
docs/en/examples/SQLite/UpdateRecords.txt
vendored
2
docs/en/examples/SQLite/UpdateRecords.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";
|
||||
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
|
||||
Table = "test";
|
||||
|
||||
FieldsStructure = New Structure;
|
||||
|
||||
Reference in New Issue
Block a user