You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +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\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
DataArray = New Array;
|
||||
|
||||
4
docs/en/examples/SQLite/ClearTable.txt
vendored
Normal file
4
docs/en/examples/SQLite/ClearTable.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Result = OPI_SQLite.ClearTable(Table, Base);
|
||||
2
docs/en/examples/SQLite/CreateTable.txt
vendored
2
docs/en/examples/SQLite/CreateTable.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
ColoumnsStruct = New Structure;
|
||||
|
||||
2
docs/en/examples/SQLite/DeletePosts.txt
vendored
2
docs/en/examples/SQLite/DeletePosts.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Filters = New Array;
|
||||
|
||||
4
docs/en/examples/SQLite/DeleteTable.txt
vendored
Normal file
4
docs/en/examples/SQLite/DeleteTable.txt
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Result = OPI_SQLite.DeleteTable(Table, Base);
|
||||
2
docs/en/examples/SQLite/GetRecords.txt
vendored
2
docs/en/examples/SQLite/GetRecords.txt
vendored
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
Fields = New Array;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.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\Administrator\AppData\Local\Temp\v8_C3DA_ad.sqlite";
|
||||
Base = "C:\Users\Administrator\AppData\Local\Temp\v8_52E1_34.sqlite";
|
||||
Table = "test";
|
||||
|
||||
FieldsStructure = New Structure;
|
||||
|
||||
Reference in New Issue
Block a user