Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
Ranked #4K
~439 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for quintoncoert

please follow following link [url]http://www.codeproject.com/cs/database/linkAccessInCSharp.asp[/url] or write following code [code] using System; using System.Data; using System.Data.OleDb; public class Test{ public static void Main() { string source = "Provider=Microsoft.JET.OLEDB.4.0;" + "data source=""C:\\Winnt\\Profiles\\Administrator\\Personal\\db2.mdb string command="SELECT Name, Assets FROM Bank_customer_data"; OleDbCommand mCommand = new OleDbCommand(); OleDbConnection mConnection=new OleDbConnection(source); mConnection.Open(); mCommand.ActiveConnection=mConnection; mCommand.CommandText=command; OleDbDataReader mReader; …

Member Avatar for vkmaurya5785
0
166
Member Avatar for javed_PUCIT

The End.