diff --git a/drivers/src/java/scriptella/driver/hana/Driver.java b/drivers/src/java/scriptella/driver/hana/Driver.java new file mode 100644 index 00000000..703aa774 --- /dev/null +++ b/drivers/src/java/scriptella/driver/hana/Driver.java @@ -0,0 +1,34 @@ +/* + * Copyright 2006-2012 The Scriptella Project Team. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package scriptella.driver.hana; + +import scriptella.jdbc.GenericDriver; + +/** + * Scriptella Adapter for Hana database. + *

For configuration details and examples see overview page. + * + * @author Bodo Hüsemann + * @version 1.0 + */ +public class Driver extends GenericDriver { + public static final String HANA_DRIVER_NAME = "com.sap.db.jdbc.Driver"; + + + public Driver() { + loadDrivers(HANA_DRIVER_NAME); + } +} diff --git a/drivers/src/java/scriptella/driver/hana/package.html b/drivers/src/java/scriptella/driver/hana/package.html new file mode 100644 index 00000000..ae5129c3 --- /dev/null +++ b/drivers/src/java/scriptella/driver/hana/package.html @@ -0,0 +1,31 @@ + +SAP Hana Database Driver Adapter for Scriptella. +

See Overview of JDBC package for a description of common features and connection properties.

+

General information

+ + + + + + + + + + +
Driver class:scriptella.driver.hana.Driver
URL:jdbc:sap://:[/?]
Runtime dependencies:ngdbc5.jar
+

Driver Specific Properties

+ + + + + + +
NameDescriptionRequired
+ +

Examples

+
+    <connection driver="hana" url="jdbc:sap://myServer:30015/?autocommit=false" user="sa">
+    </connection>
+
+ + \ No newline at end of file