Initial commit: Ignition 8.3.3 gateway config and watermeter project

This commit is contained in:
dohertj2
2026-02-22 04:49:06 -05:00
commit 577ef85dbc
1163 changed files with 19004 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"alterTable": "ALTER TABLE {tablename} {alterdef}",
"alterTableColumnDef": "ADD COLUMN {columnname} {type}",
"autoIncTypeDef": "{type} NOT NULL AUTO_INCREMENT",
"blobType": "VARBINARY",
"boolType": "INT",
"columnQuoteChar": "\"",
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP",
"datetimeType": "DATETIME",
"fetchKeyQuery": "",
"i1Type": "INT",
"i2Type": "INT",
"i4Type": "INT",
"i8Type": "BIGINT",
"limit": "LIMIT {limit}",
"limitClausePosition": "Back",
"primaryKeyDef": "PRIMARY KEY ({columnname})",
"r4Type": "FLOAT",
"r8Type": "DOUBLE",
"stringType": "VARCHAR(255)",
"supportsRGK": true,
"tableListFilter": "",
"textType": ""
}

View File

@@ -0,0 +1,17 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "default",
"timestamp": "2026-02-19T15:42:28Z"
},
"uuid": "789d5a5b-fb9d-4662-b5e9-aaba09769a91",
"lastModificationSignature": "6594dc3edf4f1afe1b1dde7790149b396d1c01fc6d22b3cc329ebde90cd55dee"
}
}

View File

@@ -0,0 +1,28 @@
{
"alterTable": "ALTER TABLE {tablename} ADD {alterdef}",
"alterTableColumnDef": "{columnname} {type}",
"autoIncTypeDef": "{type} IDENTITY(1,1)",
"blobType": "varbinary",
"boolType": "int",
"columnQuoteChar": "\"",
"createAutoIncSequence": null,
"createAutoIncTrigger": null,
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP",
"datetimeType": "datetime",
"fetchKeyQuery": "",
"i1Type": "int",
"i2Type": "int",
"i4Type": "int",
"i8Type": "bigint",
"limit": "TOP {limit}",
"limitClausePosition": "Front",
"primaryKeyDef": "PRIMARY KEY CLUSTERED ({columnname})",
"r4Type": "float(10)",
"r8Type": "double precision",
"stringType": "nvarchar(255)",
"supportsRGK": true,
"tableListFilter": "",
"textType": "nvarchar(max)"
}

View File

@@ -0,0 +1,18 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "8.3-migration",
"timestamp": "2026-02-19T15:42:12Z"
},
"uuid": "85d3b36c-c440-44c3-a239-61b8db544148",
"lastModificationSignature": "6e1024a0d9dcbc288b43b9920f659ce4927f934228f9d9046a9226026010f30c",
"enabled": true
}
}

View File

@@ -0,0 +1,28 @@
{
"alterTable": "ALTER TABLE {tablename} {alterdef}",
"alterTableColumnDef": "ADD COLUMN {columnname} {type}",
"autoIncTypeDef": "{type} NOT NULL AUTO_INCREMENT",
"blobType": "varbinary",
"boolType": "int",
"columnQuoteChar": "`",
"createAutoIncSequence": null,
"createAutoIncTrigger": null,
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP",
"datetimeType": "datetime",
"fetchKeyQuery": "",
"i1Type": "int",
"i2Type": "int",
"i4Type": "int",
"i8Type": "bigint",
"limit": "LIMIT {limit}",
"limitClausePosition": "Back",
"primaryKeyDef": "PRIMARY KEY ({columnname})",
"r4Type": "float",
"r8Type": "double",
"stringType": "varchar(255)",
"supportsRGK": true,
"tableListFilter": "",
"textType": "text"
}

View File

@@ -0,0 +1,18 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "8.3-migration",
"timestamp": "2026-02-19T15:42:12Z"
},
"uuid": "5b65bfd3-c5ac-443e-9060-8ed87e5c0622",
"lastModificationSignature": "f56775a7445d34dad51d91c2b34a32a3cd02ed9bd802367051cee3be04bbe2ec",
"enabled": true
}
}

View File

@@ -0,0 +1,28 @@
{
"alterTable": "ALTER TABLE {tablename} ADD ({alterdef})",
"alterTableColumnDef": "{columnname} {type}",
"autoIncTypeDef": "{type} NOT NULL",
"blobType": "varbinary",
"boolType": "int",
"columnQuoteChar": "\"",
"createAutoIncSequence": "CREATE SEQUENCE {tablename}seq START WITH 1 INCREMENT BY 1",
"createAutoIncTrigger": "CREATE TRIGGER {tablename}trig BEFORE INSERT ON {tablename} REFERENCING NEW AS NEW FOR EACH ROW BEGIN select {tablename}seq.nextval INTO :NEW.{columnname} FROM dual; END;",
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP FROM DUAL",
"datetimeType": "timestamp",
"fetchKeyQuery": "SELECT {tablename}SEQ.CURRVAL FROM DUAL",
"i1Type": "int",
"i2Type": "int",
"i4Type": "int",
"i8Type": "int",
"limit": "rownum\u003c\u003d{limit}",
"limitClausePosition": "Wrap",
"primaryKeyDef": "PRIMARY KEY ({columnname})",
"r4Type": "float",
"r8Type": "double precision",
"stringType": "varchar2(255)",
"supportsRGK": false,
"tableListFilter": "SYS_INFO*;*SYSTEM*;WWV*;*$*;DBA*;LOGMNR*;ORDDCM*;APEX*;ALL_SA*;DATABASE*;DV_*;GSM*;HELP;MVIEW*;ORD_*;PRODUCT_PRIVS;REDO_*;SCHEDULER_*;SERVICE*;SI_*;SQLPLUS*;SYS_*;USER_SA*;VERIFY_HISTORY;VNCR;WLM_*;XML_*;CLOUD;REGION;CHANGE_LOG*",
"textType": "nclob"
}

View File

@@ -0,0 +1,18 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "8.3-migration",
"timestamp": "2026-02-19T15:42:12Z"
},
"uuid": "4e184e03-d18c-4ce3-82fe-cd46140cd011",
"lastModificationSignature": "0a8dfcd501592bc68ddaf15f613e9f2f29f1ee378dbda56f23f240194b76360b",
"enabled": true
}
}

View File

@@ -0,0 +1,28 @@
{
"alterTable": "ALTER TABLE {tablename} {alterdef}",
"alterTableColumnDef": "ADD COLUMN {columnname} {type}",
"autoIncTypeDef": "SERIAL NOT NULL",
"blobType": "bytea",
"boolType": "int",
"columnQuoteChar": "\"",
"createAutoIncSequence": null,
"createAutoIncTrigger": null,
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP",
"datetimeType": "timestamp",
"fetchKeyQuery": "",
"i1Type": "int",
"i2Type": "int",
"i4Type": "int",
"i8Type": "bigint",
"limit": "LIMIT {limit}",
"limitClausePosition": "Back",
"primaryKeyDef": "PRIMARY KEY ({columnname})",
"r4Type": "float",
"r8Type": "double precision",
"stringType": "varchar(255)",
"supportsRGK": true,
"tableListFilter": "",
"textType": "text"
}

View File

@@ -0,0 +1,18 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "8.3-migration",
"timestamp": "2026-02-19T15:42:12Z"
},
"uuid": "453c2d8f-5e7e-42af-96e3-96ead2f3b32c",
"lastModificationSignature": "929ff1c202e27c1e0c6c708f0b9dfcda71508cbf59677738eb279f2de8bc96fd",
"enabled": true
}
}

View File

@@ -0,0 +1,28 @@
{
"alterTable": "ALTER TABLE {tablename} {alterdef}",
"alterTableColumnDef": "ADD COLUMN {columnname} {type}",
"autoIncTypeDef": "INTEGER PRIMARY KEY",
"blobType": "blob",
"boolType": "integer",
"columnQuoteChar": "\"",
"createAutoIncSequence": null,
"createAutoIncTrigger": null,
"createIndex": "CREATE INDEX {indexname} ON {tablename}({columnname})",
"createTable": "CREATE TABLE {tablename} ({creationdef}{primarykeydef})",
"currentTimeQuery": "SELECT CURRENT_TIMESTAMP",
"datetimeType": "text",
"fetchKeyQuery": "",
"i1Type": "integer",
"i2Type": "integer",
"i4Type": "integer",
"i8Type": "integer",
"limit": "LIMIT {limit}",
"limitClausePosition": "Back",
"primaryKeyDef": "",
"r4Type": "real",
"r8Type": "real",
"stringType": "text",
"supportsRGK": true,
"tableListFilter": "",
"textType": "text"
}

View File

@@ -0,0 +1,18 @@
{
"scope": "A",
"version": 1,
"restricted": false,
"overridable": true,
"files": [
"config.json"
],
"attributes": {
"lastModification": {
"actor": "8.3-migration",
"timestamp": "2026-02-19T15:42:12Z"
},
"uuid": "abce0bbe-4f6d-4fd6-ac86-abf61bb365b2",
"lastModificationSignature": "74396eab2b3203856d8aef9a12158302eecfadfe603b98dadee365eae1ca263a",
"enabled": true
}
}