Connection - Attributes (Parameters)

Connection - Attributes (Parameters)

A connection attribute is a attribute of a connection.

Parameter

The connection attribute of type parameters:

The only mandatory parameter variable is the URI.

Base parameters are parameters used for all connections. Each connection type has its own parameters variable.

Management

See

You can see the attributes of your connection with the connection info command.

Set

You can set connection parameters:

connections:
  connectionName:
    parameter1: value1
connections:
  connectionName:
    parameter1: ${MY_OS_ENV}

Base Parameters

Base Connection Attribute are connection attributes available to all connections.

Name Description
URI The connection URI
COMMENT A connection description
USER The user
PASSWORD The password
DATE_DATA_TYPE Define the text storage format of a Date data type (YYYY-MM-DD) if not supported by the connection . See Time storage
TIMESTAMP_DATA_TYPE Define the text storage format of a Timestamp data type (YYYY-MM-DD HH:MM:SS) if not supported by the connection . See Time storage
TIME_DATA_TYPE Define the text storage format of a Time data type (HH:MM:SS) if not supported by the connection . See Time storage
BOOLEAN_DATA_TYPE Define the text storage format of a Boolean. See boolean if not supported by the connection
VARCHAR_DEFAULT_PRECISION Define the default precision of a Varchar
NVARCHAR_DEFAULT_PRECISION Define the default precision of a NVarchar
CHAR_DEFAULT_PRECISION Define the default precision of a char
NCHAR_DEFAULT_PRECISION Define the default precision of a nchar
MAX_NAME_IN_PATH The maximum name in a path (for instance, Sqlite supports only one)
MAX_CONCURRENT_THREAD The maximum number of concurrent thread for the connection (for instance, Sqlite supports only one)
NATIVES The native driver connection properties as map of key value (jdbc driver properties, …)

Derived: You can't change it

Name Description
ORIGIN The origin of the connection data (ie built-in or user)



Related HowTo
How to create a SMTP connection?

This howto shows you how to create a smtp connection to a SMTP system An oracle connection supports : all common connection attributes Uri, user, password ... and all Smtp connection...
How to create a SQLite connection?

This howto shows you how to add a Sqlite connection. An sqlite connection supports : all common connection attributes Uri, user, password ... and all relational connection attributes ...
How to create an Microsoft SqlServer connection?

This howto shows you how to create a connection to an sqlserver database. An sqlserver connection supports : all common connection attributes Uri, user, password ... and all relational...
How to create an MySQL connection?

This howto shows you how to create a connection to an mysql database. An mysql connection supports : all common connection attributes Uri, user, password ... and all database connection...
How to create an Oracle connection?

This howto shows you how to create a connection to an oracle database. An oracle connection supports : all common connection attributes Uri, user, password ... and all relational connection...
Tabul - How to list connections

This How-To shows you how to list connections with the tabul connection list command

Task Runner