Results 1 to 9 of 9

Thread: Record Set (Databases) [RESOLVED]

Threaded View

  1. #1

    Thread Starter
    Addicted Member jordan23's Avatar
    Join Date
    Dec 2002
    Posts
    166

    Record Set (Databases) [RESOLVED]

    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() + "'";
    Last edited by jordan23; Jul 21st, 2004 at 09:06 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width