Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
28 views

Timeout issue when using sql helper(Microsoft.ApplicationBlocks.Data)

I am having timeout issues when dealing with long sql queries, the Dataset which timesout for long queries is : static public DataSet Getxxxx(Guid xxxx) { DataSet ds = ...
2
votes
3answers
95 views

How can i select from table where tablename is specified as SqlParameter?

I am trying to perform dynamic sql select where I am selecting from a table using a parameter. SELECT null FROM @TableName However I am getting error must declare table variable @TableName. I ...
1
vote
2answers
395 views

Lightweight ADO.NET Helper Class

Can anyone point me towards a current library that provides basic wrapping of ADO.NET functionality? I'm looking for something along the lines of the old SqlHelper class and am not really interested ...
1
vote
3answers
389 views

SqlHelper.ExecuteReader results varying and unexpected when certain number of records are returned

Note: You may not need to read the whole thing to know what's wrong... skip down to the part about the 3 scenarios if you'd like. Only read the begin if you'd like some background info on how I've ...
1
vote
2answers
599 views

Setting CommandTimeout in Microsoft's Data Access Application Block (SQLHelper)

I'm using the Data Access Application Block (SQLHelper) to execute SQL against a database. I have one query which takes longer than the default command timeout of 30 seconds. I want to up the timeout, ...
1
vote
1answer
388 views

SqlBulkCopy with SqlHelper class

I've installed DataAccessApplicationBlock.msi and I got the Microsoft.ApplicationBlocks.Data.dll file into my bin folder. I found every other sqlhelper methods except ExecuteBulkCopy. How do I add ...
1
vote
2answers
2k views

SQLHelper Class

Is there a recent version of the SQLHelper class out there. I've been using one for a few years now and was wondering if there is a new version out there for .NET Framework 2.0 or 3.0. I prefer this ...
0
votes
1answer
249 views

Singleton Data Access Object (Dao) & SQL Helper Instance, Is here any Performance drawback?

I need comments from Experts. I write my own SQL Helper Class to Communicate with DB. Why I use it as because I try to Encapsulate the Ado.Net logic. Try to set a common standard for my developer ...
0
votes
1answer
594 views

Is this way sufficient to execute DataSet?

I query one of my table using Stored Procedure Here is an example of method I have. I would like to make sure it's the most sufficient way and in case of 10000 of requests it will not cause overheat ...
0
votes
1answer
556 views

Devexpress gridview problem

when i access on database before binding the gridview the gridview never binding again here some code: void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { date.Date ...
0
votes
1answer
416 views

how to access an Output parameter in the old SQLHelper.cs class?

i'm currently modifying a legacy application that uses the SqlHelper class in c#. how do you access the OUTPUT value using an executedatareader?
0
votes
2answers
645 views

SQLHelper Class - ExecuteNonQuery Code Modification

I am just browsing the code in the SQLHelper Class V2 and I notice the following public static int ExecuteNonQuery(SqlTransaction transaction, CommandType commandType, string commandText, params ...
0
votes
2answers
1k views

What is going on in this ExecuteDataset method?

OK so I one page I find this line: objDsCourse = SqlHelper.ExecuteDataset(ConfigurationManager.ConnectionStrings("connstr").ConnectionString, CommandType.StoredProcedure, ...