01: package simpleorm.core;
02:
03: /**
04: * Alix Jermyn
05:
06: Sorry Anthony, the Driver class is
07: com.sap.dbtech.jdbc.DriverSapDB
08:
09: And db urls look like
10: jdbc:sapdb://<Host_Machine>/>databasename>
11:
12: To add a further twist, SAPDB can be put into 4 distinct Sql modes:
13: INTERNAL, ANSI, DB2, or ORACLE
14:
15: Internal is the default, which seems to be the most commonly used. If you
16: can update Sdriver appropriately, and give me a starting sub class of
17: Sdriver for sapdb, I can do some testing with it when working on the Key
18: Generator. I haven't used simpleorm with sapdb yet, but my impression of
19: Sapdb after one month's use is that is pretty ANSI 92 compliant, and the
20: generic driver would work for most if not all standard sql commands.
21:
22:
23: */
24: public class SDriverSapDB extends SDriver {
25:
26: protected String driverName() {
27: return ""; // ### Don't know much about SapDB yet.
28: }
29:
30: }
|