in reply to Re: Accessing a Lotus Notes Database
in thread Accessing a Lotus Notes Database

If there is a Lotus Notes ODBC client library for Linux, just use DBD::ODBC. If you can't get the ODBC library for Linux but can get it for another platform and still want to run your script on Linux, you should look at DBD::Proxy/DBI::ProxyServer. In a DBD::Proxy setup you would set up a DBI::ProxyServer process running on the box w/ the ODBC client library and it would connect to the Notes database. Then you use DBD::Proxy in your client program (running anywhere) to connect to the DBI::ProxySerer process. I know thats a lot of layers, but it does actually work. I've used this technique to connect a program on a Linux box to an MS-Access DB ... its more stable than you might think.
  • Comment on RE: Re: Accessing a Lotus Notes Database

Replies are listed 'Best First'.
RE: RE: Re: Accessing a Lotus Notes Database
by BBQ (Curate) on May 05, 2000 at 07:48 UTC
    Talk about n-tier!!
    Linux Wkst.        Windoze Server
    --------------    ------------------------------
    |Linux| DBD  |    | DBI  | DBD | ODBC  | Lotus |
    |Apps | Proxy|--->| Proxy| ODBC| Driver| Client|
    --------------    ------------------------------
                                                |
      -------------                             |
      |Lotus Notes| <----------------------------
      |Server     |
      -------------
       AIX RS/6000
    
    Is this what you're talking about?