Found this interesting interview question: You need to display the sales data for your division for the past 5 years in a DataGrid on a Web Form. Performance is very important. What would be the best
I execute a query that calls a SP, that SP returns data... but when I call it with a DataAdapter I get no result data, if use a DataReader instead... then I get data. The database is SQL Server and th
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this
How to handle multiple ResultSets, each with multiple Rows? The call to NextResult() breaks the while loop.
Can anyone help me on how this error came up There is already an open DataReader associated with this Connection which must be closed first.
In my application I want to know the execution time for a stored procedure. My pattern is to execute reader and get the data reader and read the results. The reader ret开发者_开发技巧urn immediately
Any idea how to pipe the results of ... DECLARE @session_name VARCHAR(200) = \'test_trace\' SELECT pivoted_data.*
Is it better to declare the datareader as public or declare as local to each and every function in which we 开发者_如何学运维use the datareader in a .net page?
I am currently struggling with MySQL database with DataSet. The thing is开发者_如何学C that it uses loads of memory(as I found somewhere over the net it uses almost 4x memory rather than when you are
Please help, how do I make a while loopequivalent of this for loop. So that I could read from one row in the table of mysql database and displayit on the combobox in vb.net.