//replace with your datasource value (TNSnames) ";Data Source=" + ConnectionParams.Datasource +
MsgConnect is indispensable if your application consists of more than one module. If you need to exchange information between modules, no matter within one system or across network, MsgConnect will solve this problem for you. You can use simple paradigm of sending binary message to the remote side and MsgConnect will deliver the message and reply with optional compression, encryption and integrity checking.
//using OLEDB .Net Data Provider features ";OLEDB.NET=true" ;
//Connection to datasource, using connection parameters given above conn = new OleDbConnection(connectionString);
//Open database connection conn.Open(); return true; } // catch exception when error in connecting to database occurs catch (Exception ex) { //Display error message MessageBox.Show(ex.ToString()); return false; } } DML Operations on DataSet Sample