LotusScript to C API Programming Guide

rtLib Domino Rich Text Management template
Home
Show details for ContentContent
Purchase
Ready-to-use samples
Show details for Online resourcesOnline resources
Forum
Links
Happy readers

Anonymous

login


 

Hosted by Prominic.NET, Inc.
Main topic: DNS-less ODBC connection

DNS-less ODBC connection (by Wim van Eijsden, 11/23/2004 05:26:49 AM)

I want to create an ODBC connection with an Access Database without creating a DSN. In Visual Basic it is possible to create a DNS-less connection:

oConn.Open "Driver={Microsoft Access Driver (*.mdb)};" & _

"Dbq=c:\somepath\mydb.mdb;" & _

"Uid=admin;" & _

"Pwd="

Lotus Script is using the ODBCConnection class but I think that this class is not supporting a DSN-less connection like the VB example.

Is there an other way to do this ???