wyrd
Well-known member
Anyone know if there is a place where I can d/l MS SQL drivers for development on my home computer?
Originally posted by Thinker
Unless there is something special needed for .net, everything
should be in mdac_typ.exe. (Unless you are asking for MSDE?)
DataSet ds = new DataSet();
SqlConnection con =
new SqlConnection(@"data source=*****-Z3KRWZD9LVE\VSdotNET;initial catalog=testdb;integrated security=SSPI;persist security info=False;workstation id=*****-Z3KRWZD9LVE;packet size=4096");
SqlDataAdapter da = new SqlDataAdapter("Select * from Names", con);
da.Fill(ds, "Names");
dataGrid1.DataSource = ds.Tables["Names"];
dim conn as string = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Payroll;Data Source=(local)\netsdk;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=LAPTOP;Use Encryption for Data=False;Tag with column collation when possible=False"
Originally posted by divil
Thinker - VS.NET comes with a cut-down version of enterprise manager in the form of the Server Explorer. I guess its intended for people who install MSDE with Visual Studio. Its actually pretty good.