AO Logo
 
  
  
  
Httpd Tomcat Data Sources
AO
AO Industries, Inc.
Application Infrastructure ProviderApplication Infrastructure Provider
Sign UpWhat's NewClient AreaContact UsSite Map
 
your location:   home page ··· aoserv platform ··· software components ··· aoserv client ··· tables ··· table definitions ··· httpd tomcat data sources

TABLE NAME

httpd_tomcat_data_sources

DESCRIPTION

The httpd_tomcat_data_sources stores the data sources on a per-context basis.

COLUMNS

columntypenulluniquereferencesreferenced_bysince_versiondescription
pkeypkeyfalsetrue1.5a generated unique key
tomcat_contextfkeyfalsefalsehttpd_tomcat_contexts.pkey1.5the context this data source is for
namestringfalsefalse1.5the JNDI name
driver_class_namestringfalsefalse1.5fully qualified Java class name of the JDBC driver to be used
urlstringfalsefalse1.5connection URL to be passed to our JDBC driver
usernamestringfalsefalse1.5database username to be passed to our JDBC driver
passwordstringfalsefalse1.5database password to be passed to our JDBC driver
max_activeintfalsefalse1.5the maximum number of active instances that can be allocated from this pool at the same time
max_idleintfalsefalse1.5the maximum number of connections that can sit idle in this pool at the same time
max_waitintfalsefalse1.5the maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception
validation_querystringtruefalse1.5SQL query that can be used by the pool to validate connections before they are returned to the application. If specified, this query MUST be an SQL SELECT statement that returns at least one row.