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:
1
docs/en/examples/PostgreSQL/AddRecords.txt
vendored
1
docs/en/examples/PostgreSQL/AddRecords.txt
vendored
@@ -28,6 +28,7 @@
|
||||
RecordStructure.Insert("dp_field" , New Structure("DOUBLE_PRECISION" , 1.0000000000000002)); // or DOUBLE PRECISION
|
||||
RecordStructure.Insert("text_field" , New Structure("TEXT" , "Some text"));
|
||||
RecordStructure.Insert("varchar_field" , New Structure("VARCHAR" , "Some varchar"));
|
||||
RecordStructure.Insert("charn_field" , New Structure("CHAR" , "AAA"));
|
||||
RecordStructure.Insert("char_field" , New Structure("CHAR" , "A"));
|
||||
RecordStructure.Insert("name_field" , New Structure("NAME" , "Vitaly"));
|
||||
RecordStructure.Insert("bytea_field" , New Structure("BYTEA" , Image));
|
||||
|
||||
3
docs/en/examples/PostgreSQL/CreateTable.txt
vendored
3
docs/en/examples/PostgreSQL/CreateTable.txt
vendored
@@ -21,7 +21,8 @@
|
||||
ColoumnsStruct.Insert("dp_field" , "DOUBLE PRECISION");
|
||||
ColoumnsStruct.Insert("text_field" , "TEXT");
|
||||
ColoumnsStruct.Insert("varchar_field" , "VARCHAR");
|
||||
ColoumnsStruct.Insert("char_field" , "CHAR(1)");
|
||||
ColoumnsStruct.Insert("charn_field" , "CHAR(3)");
|
||||
ColoumnsStruct.Insert("char_field" , "CHAR");
|
||||
ColoumnsStruct.Insert("name_field" , "NAME");
|
||||
ColoumnsStruct.Insert("bytea_field" , "BYTEA");
|
||||
ColoumnsStruct.Insert("ts_field" , "TIMESTAMP");
|
||||
|
||||
1
docs/en/examples/PostgreSQL/GetRecords.txt
vendored
1
docs/en/examples/PostgreSQL/GetRecords.txt
vendored
@@ -21,6 +21,7 @@
|
||||
Fields.Add("dp_field");
|
||||
Fields.Add("text_field");
|
||||
Fields.Add("varchar_field");
|
||||
Fields.Add("charn_field");
|
||||
Fields.Add("char_field");
|
||||
Fields.Add("name_field");
|
||||
Fields.Add("bytea_field");
|
||||
|
||||
Reference in New Issue
Block a user