Link to home
Start Free TrialLog in
Avatar of prenexus
prenexus

asked on

ODBC from Domino server rather than Client

Hi!

Im new to Notes trying to setup a Domino server that can access data on a mainframe (DB2).

Im using ODBC to connect from my machine(client), but I cant seem to access the data set names on the server.

Im using Notes 4.5.4 and Domino 4.6.5a

What Im tring to do is grab data to fill out a form from an online database (DB2) through ODBC. I can make the calls ok from the client, but I dont want to configure thousands of clients to hit the mainframe. I need to route the calls through the server somehow.

Is it possible to do this? Or will I have to configure an ODBC driver for every client to access the data?

If it is possible...what do I need to do?

-mat-
ASKER CERTIFIED SOLUTION
Avatar of R_Reed
R_Reed

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gatutr
gatutr

AFAIK, DECS is not the only way. You can create the ODBC DSN in the server ONLY. Then create an agent that does data processing as you want. From the client, you can write some code in the apropriate event. From within the code call the agent as

theAgent.RunOnServer

where theAgent is a NotesAgent variable.

Using this technique, you won't have to set up an ODBC DSN in every client.