I found this board while searching for a resolution to my issue. I am
trying to connect to a ultralite database stored on my local machine
but I am getting an exception stating that there was an error parsing
the connection string. Here is a code snippit:
ULConnection _Conn;
ULConnectionParms openParms = new ULConnectionParms();
String connString = @"dbf=\Documents and Settings\zach\My
Documents\Visual Studio 2008\Projects\DatabaseControl\DatabaseControl
\bin\Debug\\my_db.udb";
_Conn = new ULConnection(connString); //
Exception is thrown here
_Conn.Open();
I have exhausted all possible ideas in my head and if anyone has a
suggestion I would greatly appreciate it. Thank you in advance.