资 源 简 介
This is not full featured driver with sql support (yet).
Our first target to retrieve information from VIEWs created on the Lotus Notes through JDBC interface.
Currently, the native notes jdbc driver is not supported anymore. You can still find ODBC driver, and work through JDBC-ODBC bridge, bu we need pure JDBC because our OS is not windows compatible.
Idea
There is a native Lotus Notes API (Notes.jar) that we can use to retrieve data from Lotus views. So we gonna just wrap this interface in jdbc.
The query to be implemented
At first stage there will be a very simple query:
SELECT VIEW DataLotus View Name
where DataLotus View Name is a lotus view name (could be with path).
You can specify prepared query parameters (will be explaned later)
and this query:
SELECT VIEWLIST
This one returns all views from the current database.
Connection
dri