msde

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to start using msde with c# and it's features.Is ther a link
that you can send me
 
Hi freddy,

I'm not sure what kind of link you want. I don't think there are much on
C# with MSDE, but pretty much everything related to C# and MS Sql Server
2000 will work in MSDE with limitations on number of users etc.

You can download MSDE here:

http://www.microsoft.com/sql/msde/downloads/default.asp

Also download the Northwind and pubs databases (can be installed with
osql).

If you have Visual Studio .Net you can attach a database with the Server
Explorer (once MSDE is installed). You can then use the Server Explorer
to create tables.

For information on how to connect to databases this page is helpful:

http://www.connectionstrings.com/
 
Bear in mind that if you use C# 2005, you've got to use SQL Server 2005. 2003
of one isn't compatible with 2005 of the other! This is because 2003 uses
SQLOLEDB, whereas 2005 uses SQLNCLI (SQL native client).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top