Updates

Latest Tweet



What's New?

Check out for latest innovation, a computer based training video collection


Like this Page

Pro ADO.NET 2.0 Review by K. Bouapha

Sample Source Codes

The book is good and subject is good. Just word of warning for you that is using the codes in the books in C#. If you are using the new SQLExpress 2005, please note for specifying the connection in your datasource:
Example:
From author-->"Data Source=(local);Initial Catalog=Test;Integrated Security=True"

Doesn't work for me!!!

Solution:

"Data Source=(local)\\SqlExpress;Initial Catalog=Test;Integrated Security=True"

Why "\\" instead of "\"?
Because in Visual Studio 2008, it generates an error saying-->"Unrecognized escape sequence"

Just little small detail but other than that, it's a good book for the subject.