No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: 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; … | |
Re: ur question is not clear pls give more details |
The End.