Subject | Re: [Firebird-Java] java.library.path |
---|---|
Author | Roman Rokytskyy |
Post date | 2009-08-06T21:22:09Z |
> Jaybird has several drivers:there is one more:
> pure Java (type 4): jdbc:firebirdsql://<host>:<port>/<db-path> and
> (old-style) jdbc:firebirdsql:<host>/<port>:<db-path>
jdbc:firebirdsql:java:<host>/<port>:<db-path>
> native/JNI (type 2): jdbc:firebirdsql:native:<host>/<port>:<db-path>The whole idea with the URL is similar to what you have in Oracle, for
> local/JNI (type 2): jdbc:firebirdsql:local:<db-path>
> embedded/JNI (type 2): jdbc:firebirdsql:embedded:<db-path>
example:
jdbc:oracle:thin:<driver-specific-part>
jdbc:oracle:oci:<driver-specific-part>
In Jaybird we have:
jdbc:firebirdsql:java:
jdbc:firebirdsql:native:
jdbc:firebirdsql:local:
jdbc:firebirdsql:embedded:
which defines four different driver types, only that there is an "alias"
for "jdbc:firebirdsql:java:" - "jdbc:firebirdsql:" for simplicity and
compatibility reasons.
Roman