Browse by Tags

All Tags » ADO.NET (RSS)

Links 4 Later I by Travis

Ajax Activity Indicators ( DotNetKicks ) FileHelpers Library ( DotNetKicks ) ASP.NET Refresh Button Control ( CodeBetter ) TDD Starter Kit ( CodeBetter )
Filed under: , , ,

ORMapper Party by Travis

It seems this same argument comes up annually (yearly), why is that? Although I have to say, sometimes it gets entertaining!
Filed under:

"?" vs @param by Travis

string sql = "SELECT COUNT(*) "; sql += "FROM athletes "; sql += "WHERE category = ? "; sql += "AND gender = ? "; VS string sql = "SELECT COUNT(*) "; sql += "FROM athletes "; sql += "WHERE category = @category "; sql += "AND gender = @gender "; Can I...
Filed under:

DataSet DataTable Relation Trouble by Travis

I have a DataSet... With these tables: Parent, Child, and GrandChild. Each table has an Id, ParentId and Name field. (except the top Parent table) With these Relations: ds.Relations.Add("ParentToChild",ds.Tables["Parents"].Columns["Id"],ds.Tables["Children...
Filed under:
More Posts