Tagged Questions

3
votes
3answers
73 views

Java make a copy of a reader

I have a BufferedReader looping through a file. When I hit a specific case, I would like to continue looping using a different instance of the reader but starting at this point. …
1
vote
4answers
386 views

Stored proc Output parameter + Select not passing back output parameter

Hi I have a stored procedure that returns two recordsets which i call using GetReader. I iterate the first, call IDataReader.NextResult(), then iterate the second. I assign value …
2
votes
1answer
88 views

DataReader Behaviour With SQL Server Locking

We are having some issues with our data layer when large datasets are returned from a SQL server query via a DataReader. As we use the DataReader to populate business objects and s …
0
votes
3answers
173 views

How To: Use a datareader without a count of records

It seems folks have lost the ability to generate old style COBOL/RPG reports using modern day languages. I often see code using DataReaders that relies on a count of records. So …
0
votes
1answer
26 views

How to count rows in MySqlDataReader?

Hi, I have successfully switched my project from odbc.datareader to mysql.datareader. The problem is that with the first one /odbc datareader), the AffectedRows property retrieves …
4
votes
3answers
393 views

Convert rows from a data reader into typed results

I'm using a third party library which returns a data reader. I would like a simple way and as generic as possible to convert it into a List of objects. For example, say I have a cl …
1
vote
2answers
41 views

Example of generic DataReader code (.net)

Hi, As my experience with .Net really began as working on existing in-house applications for a company, I feel I've picked up so many bad coding practices without realising it. One …
1
vote
4answers
354 views

Check for Existance of column in DataReader OR Not make debugger break on certain exceptions

I have code that looks like: //System.Data.IDataRecord dr try { Consolidated = Utility.NullConvert.ToBool(dr[Constants.Data.Columns.cConsolidated], false); } catch (IndexOut …
1
vote
1answer
124 views

How do you check whether a cell is readonly in EXCEL using C#

Hi, I am importing data to Excel sheets from a database. For this, I am using datareader. The excel sheet template has some macros and few formulae calculated and its not the norm …
1
vote
2answers
55 views

DataSet, an old confusion

When should I use DataSet instead of DataReader? When I must use DataSet instead of DataReader? When should I use data in a disconnected fashion? When I must use data in a disc …
1
vote
1answer
30 views

What is the advantage of using a DataRelation?

I'd like to know what the advantage of using a DataRelation in .NET is, as opposed to crafting the relationship in the data layer itself? Or is this largely a decision by the devel …
1
vote
2answers
107 views

Is it suggestable to use generics for large amount of data?

I'm having let's say thousands of Customer records and I have to show them on a webform. Also, I have one CustomerEntity which has 10 properties. So when I fetch data in using a Da …
1
vote
3answers
358 views

How can I easily convert DataReader to List<T> ?

I'm having the data in datareader which i want to be converted in list. What is possible simple solutions for this? For e.g.In CustomerEntity class, I'm having customerId & Cu …
1
vote
1answer
206 views

Manipulate DATA FILE (text) stored as varbinary(max) in sql table

Hi, looking for help and need pointing in the right direction, can anyone assist? Have a data file (txt) that contains 10000 numbers/data points. Storing the data file as varbinar …
1
vote
4answers
237 views

How to use datareader with null values

Say I have this class: class myclass { public int Field1{ get; set; } public int? Field2 { get; set; } //Note Field2 is nullable } I'm trying to populate a generic lis …

1 2 3 next
15 30 50 per page