Whatever message this page gives is out now! Go check it out!
| Type | Name | Description |
1 | JDBC-ODBC bridge | Translates JDBC calls to ODBC calls, and sends them to the ODBC driver. Advantages: Allows access to many different databases.Disadvantages: The ODBC driver, and possibly the client database libraries, must reside on the ColdFusion server computer. Performance is slower than other JDBC driver types.Adobe does not recommend this driver type unless your application requires DBMS-specific features. |
2 | Native-API/partly Java driver | Converts JDBC calls to database-specific calls.Advantages: Better performance than Type 1 driver.Disadvantages: The client database libraries of the vendor must reside on the same computer as ColdFusion. ColdFusion includes a Type 2 driver for use with Microsoft Access Unicode databases. |
3 | JDBC-Net pure Java driver | Translates JDBC calls to the middle-tier server, which then translates the request to the database-specific native-connectivity interface.Advantages: The database libraries of vendors are not required client computer. Can be tailored for small size (faster loading).Disadvantages: Database-specific code must be executed in the middle tier. ColdFusion includes an ODBC socket Type 3 driver for use with Microsoft Access databases and ODBC data sources. |
4 | Native-protocol/all-Java driver | Converts JDBC calls to the network protocol used directly by the database.Advantages: Fast performance. No special software needed on the computer on which you run ColdFusion.Disadvantages: Many of these protocols are proprietary, requiring a different driver for each database. ColdFusion includes Type 4 drivers for many DBMSs; however, not all DBMSs are supported in ColdFusion Standard Edition. |
| Driver | Type | For more information |
Apache Derby Client | ||
Apache Derby Embedded | ||
DB2 Universal Database | 4 | |
DB2 OS/390 | 4 | |
Microsoft Access | 3 | |
Microsoft Access with Unicode support | 2 | |
Microsoft SQL Server | 4 | |
MySQL | 4 | |
ODBC Socket | 3 | |
Oracle | 4 | |
Other |
ColdFusion includes data sources that are configured by default. You do not need the following procedure to work with these data sources. |
The omission of required user name and password information is a common reason why a data source fails to verify. |
To check the status of all data sources available to ColdFusion, click Verify All Connections. |
The cfquery connectstring attribute is no longer supported. |
validationQuery has to be used with caution as it can result in performance issues. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database | The name of the database. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). The user name must have CREATE PACKAGE privileges for the database, or the database administrator must create a package. Consult the database administrator when configuring this type of data source. |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Returns the entire contents of any CLOB/ Text columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. For UDB 7.1 and 7.2, a 32K limit on CLOBs exists. |
BLOB | Returns the entire contents of any BLOB/Image columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. BLOBs are not supported on UDB 7.1 and 7.2. |
LongText Buffer (chr) | The default buffer size, used if the CLOB option is not selected. The default value is 64000 bytes. |
BLOB Buffer (bytes) | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation Query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database folder | The folder where the database is located. |
Create Database | Select this option to create a database. The new database exists in the path specified in the Database Folder. If the database exists, an SQL warning is generated, and a connection to the existing database is established. |
Description | (Optional) A description for this connection. |
ColdFusion user name | The user name you use to log in to the ColdFusion Administrator. |
ColdFusion Password | The password you use to log in to the ColdFusion Administrator. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Max Pooled Statements | Select this option to reuse prepared statements (that is, stored procedures and queries that use the cfqueryparam tag). Although you tune this setting based on your application, start by setting it to the sum of the following: · Unique cfquery tags that use the cfqueryparam tag · Unique cfstoredproc tags |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Returns the entire contents of any CLOB/ Text columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. For UDB 7.1 and 7.2, a 32K limit on CLOBs exits. |
BLOB | Returns the entire contents of any BLOB/Image columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. BLOBs are not supported on UDB 7.1 and 7.2. |
LongText Buffer (chr) | The default buffer size, used if the CLOB option is not selected. The default value is 64000 bytes. |
BLOB Buffer (bytes) | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated.Specify the validation query just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
DB2 Universal Database (UDB) refers to all versions of DB2 running on Windows, UNIX, and Linux/s390 platforms. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database | The name of the database. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. |
Port | The number of the TCP/IP port that the server monitors for connections. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). The user name must have CREATE PACKAGE privileges for the database, or the database administrator must create a package. Consult the database administrator when configuring this type of data source. |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Max Pooled Statements | Enables reuse of prepared statements (that is, stored procedures and queries that use the cfqueryparam tag). Although you tune this setting based on your application, start by setting it to the sum of the following: · Unique cfquery tags that use the cfqueryparam tag · Unique cfstoredproc tags |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Returns the entire contents of any CLOB/Text columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. For UDB 7.1 and 7.2, a 32K limit on CLOBs exits. |
BLOB | Returns the entire contents of any BLOB/Image columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. BLOBs are not supported on UDB 7.1 and 7.2. |
LongText Buffer (chr) | The default buffer size, used if the CLOB option is not selected. The default value is 64000 bytes. |
BLOB Buffer (bytes) | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
Client Hostname | The host name from where the query is executed. |
Client Username | The user name if the user is logged in using the <cflogin> tag. |
Application Name | The application name specified in the application.cfc. |
Prefix | If specified, the value is prefixed with the application name specified in application.cfc. |
Enable connection validation | Check if to validate the connection. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) used by ColdFusion to connect to the data source. |
Database File | The file that contains the database. |
System Database File | To secure access to the specified database file, click Browse Server to locate and enter a database that contains database security information. By default, the system database is located in the same directory as the MDB file or in the windows\system32\system.mdw directory. |
Use Default User name | If selected, ColdFusion does not pass a user name or password when requesting a connection. The Microsoft Access driver uses the default user name and password. |
ColdFusion User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
ColdFusion Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Page Timeout | The number of milliseconds before a request for a ColdFusion page times out. The default is 600. If you observe excessive network activity when using this driver, increase the page time-out value. |
Max Buffer Size | The size of the internal buffer, in kilobytes, that Access uses to transfer data to and from the disk. The default buffer size is 2048 KB. Specify an integer value divisible by 256. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Default User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Default Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Return Timestamp as String | Enable this setting if your application retrieves Date/Time data and then reuses it in SQL statements without applying formatting (using functions such as DateFormat, TimeFormat, and CreateODBCDateTime). |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the data source connection login attempt. |
CLOB | Returns the entire contents of any CLOB/ Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Returns the entire contents of any BLOB/ Image columns in the database for this data source. If deselected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size, used if the CLOB option is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database File | The file that contains the database. |
Description | (Optional) A description for this connection. |
ColdFusion User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
ColdFusion Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Page Timeout | The time (in tenths of a second) before a request for a ColdFusion page times out. |
Max Buffer Size | The size of the internal buffer, in kilobytes, used by Microsoft Access to transfer data to and from the disk. Can be any integer value divisible by 256. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the data source connection login attempt. |
CLOB | Select to return the entire contents of any CLOB/Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size, used if the CLOB option is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database | The database to which this data source connects. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. If you are running SQL Server locally (or using MSDE), specify 127.0.0.1 for theserver name instead of the actual instance name. |
Port | The number of the TCP/IP port that the server monitors for connections. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Select Method | Determines whether server cursors are used for SQL queries. · The Direct method provides more efficient retrieval of data when you retrieve recordsets in a forward-only direction and you limit your SQL Server connection to a single open SQL statement at a time. This is typical for ColdFusion applications. · The Cursor method lets you have multiple open SQL statements on a connection. This is not typical for ColdFusion applications, unless you use pooled statements. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
String Format | Enable this option if your application uses Unicode data in DBMS-specific Unicode data types, such as National Character or nchar. |
Max Pooled Statements | Enables reuse of prepared statements (that is, stored procedures and queries that use the cfqueryparam tag). Although you tune this setting based on your application, start by setting it to the sum of the following: · Unique cfquery tags that use the cfqueryparam tag · Unique cfstoredproc tags |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
| Query Timeout (seconds) | The timeout (in seconds) for all the query statements created by the connection. |
| ApplicationIntemt | Specifies whether the driver connects to read-write databases or requests read-only routing to connect to read-only database replicas. |
| Log Activity | Enable this option to create logs for all database activities. You can also specify a location for the log file. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the data source connection login attempt. |
CLOB | Select to return the entire contents of any CLOB/Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size, used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size, used if the BLOB option is not selected. The default value is 64000 bytes. |
| Disable Autogenerated Keys | Enable or disable the option. Auto-generated keys feature provides a way to retrieve values from columns that are part of an index or have a default value assigned. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation Connection | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Configure the validation query just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
Client Hostname | The host name from where the query is executed. |
Client Username | The user name if the user is logged in using the <cflogin> tag. |
Application Name | The application name specified in the application.cfc. |
Prefix | If specified, the value is prefixed with the application name specified in application.cfc. |
Enable connection validation | Check if to validate the connection. |
By default, queries to MySQL data sources return isCaseSensitive = NO for each column in the return structure from the GetMetaData function. Set the system property -Dcoldfusion.mysql.enableiscasesensitive=true to turn on the calls to isCaseSensitive. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database | The database to which this data source connects. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. |
Port | The number of the TCP/IP port that the server monitors for connections. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source, if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source, if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, you must enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Query Timeout (seconds) | The default query timeout values for a DSN. This settings is only applicable for MySQL DataDirect driver. A new argument qtimeout has been added to the following methods in the Administrator API:
|
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the data source connection login attempt. |
CLOB | Select to return the entire contents of any CLOB/ Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. You should specify this just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
For Oracle databases, if you want to filter the retrieval of column names or indexes for a particular schema, then the schema name must be provided along with the table name in the table attribute. In this case, the format of the table attribute value is: schemaname.tablename. |
The MySQL5 Enterprise database sometimes requires access permission for all users who try to connect to it, if the access permission is not specified during configuration. |
The qtimeout option is not supported by all databases. |
| Property | Relevance | Description | Applies to |
KeyStore | Applies only if client authentication is enabled on database server | The directory of the keystore file to be used | DB2, Oracle |
KeyStorePassword | Applies only if client authentication is enabled on database server | The password to access the keystore file | DB2, Oracle |
KeyPassword | OptionalUsed if keys in keystore file have a different password than the keystore file | The password to access the individual keys in the keystore file | DB2, Oracle |
EncryptionMethod | Required. Values are noEncryption and SSL. If EncryptionMethod is set to SSL, the data is encrypted using the SSL encryption method. | Determines if SSL encryption encrypts and decrypts data transmitted between the driver and the database server. | DB2, Microsoft SQL Server, Oracle, and MySQL. |
TrustStore | Ignored if ValidateServerCertificate=false | The directory of the truststore file | DB2, Microsoft SQL Server, Oracle |
TrustStorePassword | Ignored if ValidateServerCertificate=false | The password to access the truststore file | DB2, Microsoft SQL Server, Oracle |
ValidateServerCertificate | Optional | true or false Determines whether the driver validates the certificate sent by the database server | DB2, Microsoft SQL Server, Oracle |
HostNameInCertificate | OptionalApplies if EncryptionMethod=SSL and ValidateServerCertificate=true | {{host_name | #SERVERNAME#}}Host name for certificate validation | DB2, Microsoft SQL Server, Oracle |
useSSL | Required for enabling SSL | true or false Use SSL when communicating with the server | MySQL |
requireSSL | Optional | true or false Require SSL connection if useSSL=true | MySQL |
verifyServerCertificate | Optional | true or false Determines whether to validates the certificate sent by the database server | MySQL |
clientCertificateKeyStoreUrl | Applies only if client authentication is enabled on the database server | URL to the client certificate KeyStore. If not specified, use defaults. | MySQL |
clientCertificateKeyStoreType | OptionalDepends on the keystore type supported by your JVM | KeyStore type for client certificates. NULL or empty means use default. Standard keystore types supported by the JVM are "JKS" and "PKCS12". Your environment might have more types available depending on the security products available to the JVM. | MySQL |
clientCertificateKeyStorePassword | Applies only if client authentication is enabled on database server | Password for the client certificate KeyStore | MySQL (4/5) |
trustCertificateKeyStoreUrl | Applies only if verifyServerCertificate=true | URL to the trusted root certificate KeyStore. If not specified, use defaults. | MySQL (4/5) |
trustCertificateKeyStoreType | OptionalDepends on the keystore type supported by your JVM | KeyStore type for trusted root certificates. NULL or empty means use default. Standard keystore types supported by the JVM are "JKS" and "PKCS12". Your environment might have more types available depending on the security products available to the JVM. | MySQL (4/5) |
trustCertificateKeyStorePassword | Required if verifyServerCertificate=true | Password for the trusted root certificate KeyStore | MySQL (4/5) |
| Database | Database Driver | Connection Property |
DB2 | DB2 Universal Database | EncryptionMethod=SSL; KeyStore=path to keystore; KeyStorePassword= keystore Password; KeyPassword= key Password; TrustStore=path to keystore; TrustStorePassword=trustStorePassword; ValidateServerCertificate= true|false; HostNameInCertificate=host_name|#SERVERNAME#}; |
Microsoft SQL Server | Microsoft SQL Server | EncryptionMethod=SSL; TrustStore=path to keystore; TrustStorePassword= trustStorePassword; ValidateServerCertificate=true|false; HostNameInCertificate=host_name| #SERVERNAME#; |
Oracle | Oracle | EncryptionMethod=SSL; KeyStore=path to keystore; KeyStorePassword= keystore Password; KeyPassword= key Password; TrustStore=path to keystore; TrustStorePassword= trustStorePassword; ValidateServerCertificate= true|false; HostNameInCertificate=host_name|#SERVERNAME#}; |
MySQL | MySQL (4/5) | useSSL=true&requireSSL=true|false& verifyServerCertificate=true|false&clientCertificateKeyStoreUrl= URLToClientCertificate&clientCertificateKeyStoreType= KeyStoreType&clientCertificateKeyStorePassword= keystorePassword&trustCertificateKeyStoreUrl= URLToRootCertificate&trustCertificateKeyStoreType= KeyStoreType&trustCertificateKeyStorePassword=trustedRootCertificatePassword Not all MySQL (4/5) properties listed are supported by all MySQL versions. See MySQL documentation for details of the supported properties for your version. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
ODBC DSN | Select the ODBC DSN to connect to ColdFusion. |
Trusted Connection | Specifies whether to use domain user account access to the database. Only valid for SQL Server. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Return Timestamp as String | Enable this option if your application retrieves Date/Time data and then reuses it in SQL statements without applying formatting (using functions such as DateFormat, TimeFormat, and CreateODBCDateTime). |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Select to return the entire contents of any CLOB/Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB /Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Configure this just before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
SID Name | The Oracle System Identifier (SID) that refers to the instance of the Oracle database software running on the server. The default value is ORCL. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. |
Port | The number of the TCP/IP port that the server monitors for connections. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Max Pooled Statements | Enables reuse of prepared statements (that is, stored procedures and queries that use the cfqueryparam tag). Although you tune this setting based on your application, start by setting it to the sum of the following: · Unique cfquery tags that use the cfqueryparam tag · Unique cfstoredproc tags The default value is 300. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Select to return the entire contents of any CLOB/Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
Client Hostname | The host name from where the query is executed. |
Client Username | The user name if the user is logged in using the <cflogin> tag. |
Application Name | The application name specified in the application.cfc. |
Prefix | If specified, the value is prefixed with the application name specified in application.cfc. |
Enable connection validation | Check if to validate the connection. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
JDBC URL | The JDBC connection URL for this data source. |
Driver Class | The fully qualified class name of the driver. For example, com.inet.tds.TdsDriver. The JAR file that contains this class must be in a directory defined in the ColdFusion classpath. |
Driver Name | (Optional) The name of the driver. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Select to return the entire contents of any CLOB/Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
sendStringParametersAs Unicode=false |
If the database uses Unicode, specify true for the sendStringParametersAsUnicode_ parameter._ |
ParametersAsUnicode =false |
DB2 OS/390 refers to all supported versions of DB2 on OS/390 and z/OS platforms. DB2 iSeries refers to all supported versions of DB2 on iSeries and AS/400. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
Database | The database to which this data source connects. |
Server | The name of the server that hosts the database that you want to use. If the database is local, enclose the word local in parentheses. This name must be either a fully qualified domain name (resolvable through DNS) or an IP address. It cannot be a netbios name (even if you are running NBT), or an alias you set up using the client connectivity wizard (both of these approaches worked in earlier ColdFusion versions). |
Port | The number of the TCP/IP port that the server monitors for connections. |
User name | The user name that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to the JDBC driver to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
Connection String | A field that passes database-specific parameters, such as login credentials, to the data source. |
Limit Connections | Specifies whether ColdFusion limits the number of database connections for the data source. If you enable this option, use the Restrict Connections To field to specify the maximum. |
Restrict Connections To | Specifies the maximum number of database connections for the data source. To use this restriction, enable the Limit Connections option. |
Maintain Connections | ColdFusion establishes a connection to a data source for every operation that requires one. Enable this option to improve performance by caching the data source connection. |
Timeout (min) | The number of minutes that ColdFusion maintains an unused connection before destroying it. |
Interval (min) | The time (in minutes) that the server waits between cycles to check for expired data source connections to close. |
Disable Connections | If selected, suspends all client connections. |
Login Timeout (sec) | The number of seconds before ColdFusion times out the attempt to log in to the data source connection. |
CLOB | Select to return the entire contents of any CLOB/ Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
Validation query | Called when a connection from the pool is resued. This can slow query response time because an additional query is generated. Specify the validation query before restarting the database to verify all connections, but remove the validation query after restarting the database to avoid any performance loss. |
| Setting | Description |
CF Data Source Name | The data source name (DSN) that ColdFusion uses to connect to the data source. |
JNDI Name | The JNDI location in which the J2EE application server stores the data source. |
User name | The user name that ColdFusion passes to JNDI to connect to JNDI if a ColdFusion application does not supply a user name (for example, in a cfquery tag). |
Password | The password that ColdFusion passes to JNDI to connect to the data source if a ColdFusion application does not supply a password (for example, in a cfquery tag). |
Description | (Optional) A description for this connection. |
JNDI Environment Settings | Specifies additional JNDI environment settings, if necessary by the JNDI data source. Use comma-separated list of name-value pair. For example if you must specify a user name and password to connect to JNDI, specify the following: SECURITY_PRINCIPAL=" myusername ",SECURITY_CREDENTIALS=" mypassword " |
CLOB | Select to return the entire contents of any CLOB/ Text columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the Long Text Buffer setting. |
BLOB | Select to return the entire contents of any BLOB/ Image columns in the database for this data source. If not selected, ColdFusion retrieves the number of characters specified in the BLOB Buffer setting. |
LongText Buffer | The default buffer size; used if Enable Long Text Retrieval (CLOB) is not selected. The default value is 64000 bytes. |
BLOB Buffer | The default buffer size; used if the BLOB option is not selected. The default value is 64000 bytes. |
Allowed SQL | The SQL operations that can interact with the current data source. |
In Windows, ensure that you restart all of the ColdFusion services. |