Asp.net, listbox, htc, behavior, autosearch listbox, wcf, certificate
this is a helper dll which helps to talk to sql databases during development.
the developer doesnt need to worry abt sql command objects , connections etc.
All we need to pass is the Connection string, stored proc name , Sql Parameters if any.
chk it out.
This was tested with Sql server 2005 / Sp2.
Thanks...Do you have a simple example using it?
there you go..
List<SqlParameter> arrSql = new List<SqlParameter>();
SqlParameter currentDateParameter = new SqlParameter("@CurrentDate", SqlDbType.DateTime);
currentDateParameter.Value = currentDate;
arrSql.Add(currentDateParameter);
resultSet = DBSQLHelper.GetDataTable("<Connstring>",
"dbo.GetUsersToPlay",arrSql.ToArray() );