Module: | PostgreSQL |
Name: | DB PostgreSQL |
Type: | DB |
Source: | bd_PostgreSQL.so |
Version: | 1.8 |
Author: | Roman Savochenko, Maxim Lysenko (2010-2011) |
Description: | DB module. It provides the support for DB PostgreSQL. |
License: | GPL |
Module <PostgreSQL> gives to the system OpenSCADA support of DB PostgreSQL. PostgreSQL database is a powerful multi-platform database available for free license. Manufacturer of PostgreSQL database is the PostgreSQL Global Development Group http://www.postgresql.org. The module is based on the library with API of the manufacturer of DB PostgreSQL on the language "C". The module allows you to perform operations over databases, tables and contents of tables.
The operations of opening and closing of the database are supported, with the possibility of creating a new database when you try to open one and delete the existing at the close. In terms of the subsystem "DB" of system OpenSCADA opening of DB is its registration for further using of it in the system. It also supported the operation of requesting the list of tables in the database.
DB PostgreSQL address by string of following type: {host};{hostaddr};{user};{pass};{db};{port}[;{connect_timeout}]. Where:
In the case of local access to the database in the same host the address string should be as follows: ;;roman;123456;OpenSCADA;;10
In the case of remote access to the database you must use the address and port of the server of the database. For example: server.nm.org;;roman;123456;OpenSCADA;;10
The operations of opening and closing of the table with the possibility of creating a new table when you open and deleting the existing one at the closing, and also the operation of the requesting of the table's structure are supported.
API of subsystem “DB” suppose the access to the contents of the table on the value of key(s) fields. Thus, the operation of request of the record implies the preset of key columns of the object TConfig, which will fulfill the request. Creating a new record(string) is the installation of the values of record, which does not exist.
The module allows you to dynamically change the structure of the PostgreSQL database tables. Thus, in the event of a discrepancy of the table and the structure determined by record, the structure of the table will be set to the required structure of record. In the case of the request of the value of the record, and mismatching of the structures of record and the table there will be available only to the values of common elements of the record and table. The module does not track the order of the elements in the record and in the structure of the table!
The module provides the support of multilanguage text variables. For fields with multilanguage text variables the columns of the appropriate language are created in format <lang>#<FldID> (en#NAME). In this time the base column contain value for base language. The columns of other languages are created by needs, at the time of saving to DB and execution OpenSCADA with appropriate language. In the case of the value's absence for the language it will be used the values for basic language.
The types of the elements of DB PostgreSQL correspond to types of elements of system OpenSCADA in the following way:
The types of fields of the system OpenSCADA | Types of fields of DB PostgreSQL |
TFld::String | character(n), character varying(n), text |
TFld::Integer | integer, bigint, timestamp with time zone [for the fields with the flag TFld::DateTimeDec] |
TFld::Real | double precision |
TFld::Boolean | smallint |
PostgreSQL database contains a mechanism of separation of access, which is to specify the user privileges for database. The table below lists the necessary privileges for the work in the OpenSCADA.
Operation | SQL-commands |
Creation of the DB | CREATEDB |
Creation of the connection | LOGIN |
For access to the DB you need permit direct the DB, and in case of creation DB you also need permit access to system DB "template1", which used for connection on the DB creation stage.
Briefly we will look at the initial configuration of the PostgreSQL server to connect to it using this module:
# DB initialization
$ service postgresql initdb
# DB start
$ service postgresql start
local all all trust
host all all 127.0.0.1/32 trust
$ service postgresql restart
$ psql -U postgres -d template1 -c "ALTER USER postgres PASSWORD '123456'"
Measurement of productivity of DB were carried out by the test "DB" of the module of system tests "SystemTests", by performing operations over the records of the structure: <name char (20), descr char (50), val double (10.2), id int (7), stat bool, reqKey string, reqVal string>. OpenSCADA was launched with the demo configuration.
Operation | Nokia N800, PostgreSQL 8.3 (remote) | AMD Turion L625 1.6, 2G, PostgreSQL 9.1 [local; 100Base-TX] | Intel(R) Core(TM) i3 CPU 1.33GHz, 3G, HDD [100Base-TX] |
Creation of the 1000 records (sec.): | 5 | 1.08; 1.6; 3.8 | 2.07 |
Updating of the 1000 records (sec.): | 4.8 | 1.12; 1.6; 3.9 | 2.35 |
Getting of the 1000 records (sec.): | 2.96 | 0.64; 1.2; 2.1 | 1.26 |
Seeking of the 1000 records (sec.): | - | - | 7.9 |
Seeking in preload of the 1000 records (sec.): | - | - | 0.038 |
Deleting of the 1000 record (sec.): | 1.73 | 0.39; 0.6; 1.6 | 0.94 |