JDBCDriverParams

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
driverName string Fully qualified JDBC driver class name
url string JDBC connection URL
password string Database password (encrypted)
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-jdbcdriverparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JDBCDriverParams",
  "title": "JDBCDriverParams",
  "type": "object",
  "properties": {
    "driverName": {
      "type": "string",
      "description": "Fully qualified JDBC driver class name"
    },
    "url": {
      "type": "string",
      "description": "JDBC connection URL"
    },
    "password": {
      "type": "string",
      "format": "password",
      "description": "Database password (encrypted)"
    }
  }
}