1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2026-04-28 20:46:05 +02:00
Files
OpenIntegrations/docs/en/examples/SQLite/AddTableColumn.txt
T

6 lines
211 B
Plaintext
Raw Normal View History

2026-03-17 23:35:04 +03:00
Base = "C:\Users\bayse\AppData\Local\Temp\v8_9CE5_2c.sqlite";
2025-06-09 22:06:01 +03:00
Table = "test";
Name = "new_col";
DataType = "TEXT";
2026-02-13 14:09:07 +03:00
Result = OPI_SQLite.AddTableColumn(Table, Name, DataType, Base);