Click here to Skip to main content
15,879,047 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Connectivity steps in c# with ms-access and sql server
Posted
Updated 12-Apr-11 23:34pm
v2
Comments
Tarun.K.S 13-Apr-11 5:35am    
Google this and study the results!
Sandeep Mewara 13-Apr-11 6:33am    
No effort.

1 solution

Sql server:
using (SqlConnection con = new SqlConnection(connectionString))
    {
    con.Open();
    using (SqlCommand com = new SqlCommand("SELECT * FROM Customers ORDER BY Year(date), Month(date), Day(date)", con))
        {
        SqlDataReader r = com.ExecuteReader();
        while (r.Read())
            {
            Console.WriteLine("{0}:{1}:{2}", r["Customer"], r["date"], r["Value"]);
            }
        }
(You can get the connection string by looking at the Server Explorer in VS, highlighting the database and looking in the properties pane).

For Access, use OleDBConnection instead of SqlConnection and so forth.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900