Gr8 RobertRFreeman
I also found the solution. The only thing that i had to do was not to mention the database parameter in my Query stiring, like follows:
Server=(local); User ID=sa; pwd=; Integrated Security=False;
After that all is same, i.e,
Select * from XS_Link...Customers
etc...
Thanks anyway.
Main Topics
Browse All Topics





by: RobertRFreemanPosted on 2005-05-25 at 14:56:31ID: 14081803
Here is a tutorial on dataadapters: ogspot.com /
http://vsnetdatabinding.bl
Try connecting to SQL server through the server explorer in VS.net. Right click data connections and add connection.
If you can connect, then drag and drop the sql server connection object from the Data Connections onto your form. You can look at the properties window for the connection object and get the connection string.
Once connected to sql server, you should be able to use "Select * from XS_Link...Customers"