I have the following code and I need help with recordset. How do I retireve the data??? Thanks.
Code:string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\data.mdb"; OleDbConnection connDatabase = new OleDbConnection(strConn); connDatabase.Open(); string DatQuery; DatQuery = "[Name] = '" + cboData.Text.Trim() + "' OR [Output] = '" + cboData.Text.Trim() + "'";




Reply With Quote