1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-05-06 21:04:14 +02:00

Переработка структуры каталогов

This commit is contained in:
Anton Titovets
2026-01-23 16:16:46 +03:00
parent aef1a72112
commit 6857f8671d
731 changed files with 15604 additions and 20431 deletions
+1
View File
@@ -0,0 +1 @@
Result = OPI_MSSQL.GetRecordsFilterStructure();
+1
View File
@@ -0,0 +1 @@
Result = OPI_MySQL.GetRecordsFilterStructure();
@@ -0,0 +1 @@
Result = OPI_PostgreSQL.GetRecordsFilterStructure();
+8 -8
View File
@@ -17,15 +17,15 @@
RowStructure2.Insert("created_at", OPI_Tools.GetCurrentDate()); // DATETIME
RowStructure2.Insert("data" , New Structure("blob", Image)); // BLOB
RowStrucutre1 = New Structure;
RowStrucutre1.Insert("name" , "Lesha"); // TEXT
RowStrucutre1.Insert("age" , 20); // INTEGER
RowStrucutre1.Insert("salary" , 200.20); // REAL
RowStrucutre1.Insert("is_active" , False); // BOOL
RowStrucutre1.Insert("created_at", OPI_Tools.GetCurrentDate()); // DATETIME
RowStrucutre1.Insert("data" , New Structure("blob", PictureFile)); // BLOB
RowStructure1 = New Structure;
RowStructure1.Insert("name" , "Lesha"); // TEXT
RowStructure1.Insert("age" , 20); // INTEGER
RowStructure1.Insert("salary" , 200.20); // REAL
RowStructure1.Insert("is_active" , False); // BOOL
RowStructure1.Insert("created_at", OPI_Tools.GetCurrentDate()); // DATETIME
RowStructure1.Insert("data" , New Structure("blob", PictureFile)); // BLOB
DataArray.Add(RowStructure2);
DataArray.Add(RowStrucutre1);
DataArray.Add(RowStructure1);
Result = OPI_SQLite.AddRecords(Table, DataArray, , Base);
+1
View File
@@ -0,0 +1 @@
Result = OPI_SQLite.GetRecordsFilterStructure();