Tagged Questions
Provides a way of reading a forward-only stream of rows from a SQL Server database.
35
votes
12answers
24k views
Check for column name in a SqlDataReader object
How do I check to see if a column exists in a SqlDataReader object? In my data access layer, I have create a method that builds the same object for multiple stored procedures calls. One of the ...
18
votes
12answers
3k views
Is there anything faster than SqlDataReader in .NET?
I need to load one column of strings from table on SqlServer into Array in memory using C#.
Is there a faster way than open SqlDataReader and loop through it.
Table is large and time is critical.
...
18
votes
10answers
12k views
SQL Data Reader - handling Null column values
I'm using a SQLdatareader to build POCOs from a database. The code works except when it encounters a null value in the database. For example, if the FirstName column in the database contains a null ...
11
votes
6answers
7k views
How to (efficiently) convert (cast?) a SqlDataReader field to its corresponding c# type?
First, let me explain the current situation: I'm reading records from a database and putting them in an object for later use; today a question about the database type to C# type conversion (casting?) ...
8
votes
6answers
600 views
DataReader - hardcode ordinals?
When returning data from a DataReader I would typically use the ordinal reference on the DataReader to grab the relevant column:
if (dr.HasRows)
Console.WriteLine(dr[0].ToString());
(OR ...
8
votes
10answers
8k views
DataReader or DataSet when pulling multiple recordsets in ASP.NET
I've got an ASP.NET page that has a bunch of controls that need to be populated (e.g. dropdown lists).
I'd like to make a single trip to the db and bring back multiple recordsets instead of making a ...
6
votes
2answers
392 views
How to make streams from BLOBs available in plain old C# objects when using SqlDataReader?
This is the scenario:
We store files, e.g. relatively large documents (10-300MB), in blobs in our MSSQL database.
We have a very small domain model so we use the clean SqlDataReader approach for ...
6
votes
7answers
422 views
Should I implement IDisposable here?
My method which calls SQL Server returns a DataReader but because of what I need to do - which is return the DataReader to the calling method which resides in a page code-behind - I can't close the ...
6
votes
2answers
418 views
C# SqlDataReader Execution Statistics and Information
I am creating an automated DB Query Execution Queue, which essentially means I am creating a Queue of SQL Queries, that are executed one by one.
Queries are executed using code similar to the ...
6
votes
4answers
18k views
how to get number of rows using SqlDataReader in C#
my question is about how to get number of rows using SqlDataReader in C#. I've seen some answers around the net about this but none were clearly defined except for one that states to do a while loop ...
5
votes
2answers
622 views
C# Performance gain returning a Nullable Type from a SqlDataReader
I have a simple method that returns a Nullable Int32 from a DataReader rather than the built in GetInt32.
I am calling this method many many times and have one situation where any time I can shave ...
5
votes
10answers
825 views
(string)reader[0] vs Convert.ToString(reader[0])
what's better
var s = (string)reader[0]
or
var s = Convert.ToString(reader[0])
?
5
votes
9answers
21k views
how to check if a datareader is null or empty
I have a datareader that return a lsit of records from a sql server database. I have a field in the database called "Additional". This field is 50% of the time empty or null.
I am trying to write ...
4
votes
2answers
123 views
SqlDataReader Performance List<string[]> or List<object[]>
I have been experimenting with ways to read data from a SQL server as quickly as possible and I came across an interesting discovery. If I read the data into a List<object[]> instead of a ...
4
votes
2answers
213 views
The proper way to implement paging in SqlDataReader !
I Am correctly using my own way to achieve this, but I don't know if it is efficient or not , so this is the function :
public SqlDataReader GetArticlesByPage(int pageNum, int pageSize)
{
if ...
4
votes
5answers
545 views
should I move on to entity framework
I use visual studio 2005 , but recently I've heard that there is a new technology which called entity framework .. should I move on and use it instead of using the usual SqlDataReader !!
the most ...
4
votes
2answers
984 views
SQLDataReader: Dealing with null values
Some tables I am dealing with have null values and are throwing errors. So far ive tried a few solutions to deal with the nulls with no success.
Here are the code samples from my efforts so far;
If ...
4
votes
1answer
218 views
add column while copying data in sql
I'm using SqlBulkCopy to bulk insert some records from one table into another table. The query is using a SqlDataReader to get the data. The one difference that matters (besides column order which ...
4
votes
4answers
781 views
How can I “detach” a SqlDataReader from its SqlConnection object?
I have a method ("GetDataReader," let's call it) that returns a SqlDataReader. It's inside a Singleton DataFactory class that maintains a persistent connection to the database.
The problem with this ...
3
votes
2answers
82 views
Generic SqlDataReader to Object Mapper
I'm trying to build a generic mapper which will convert the results of a SqlDataReader into a class object.
Here is the basic structure for my code:
public interface IObjectCore
{
...
3
votes
3answers
82 views
SqlDataReader are these two the same Which one is faster
I am working with SqlXml and the stored procedure that returns a xml rather than raw data. How does one actually read the data when returned is a xml and does not know about the column names. I used ...
3
votes
2answers
603 views
how do I retrieve multiple images from the database using c#
I have a database of 9 images, which keep changing, so I cannot directly set the src in html <img> tag to display the 9 images, I have to pick them from the database and bind them accordingly.
...
3
votes
4answers
358 views
Read boolean values from DB?
In C#, using SqlDataReader, is there a way to read a boolean value from the DB?
while (reader.Read())
{
destPath = reader["destination_path"].ToString();
destFile = ...
3
votes
2answers
1k views
convert from SqlDataReader to JSON
public string toJSON(SqlDataReader o)
{
StringBuilder s = new StringBuilder();
s.Append("[");
if (o.HasRows)
while (o.Read())
s.Append("{" + '"' + "Id" + '"' + ":" + ...
3
votes
4answers
2k views
Cast error on SQLDataReader
My site is using enterprise library v 5.0. Mainly the DAAB. Some functions such as executescalar, executedataset are working as expected. The problems appear when I start to use Readers
I have this ...
3
votes
4answers
1k views
Is closing/disposing an SqlDataReader needed if you are already closing the SqlConnection?
I noticed This question, but my question is a bit more specific.
Is there any advantage to using
using (SqlConnection conn = new SqlConnection(conStr))
{
using (SqlCommand command = new ...
3
votes
2answers
1k views
Timeout exception causes SqlDataReader to close?
I'm trying to pull some binary data from a database and write them to pdf files. For the most part, this is going along swimmingly, but the occasional row of data seems to throw a particular error -
...
3
votes
4answers
1k views
Parsing a decimal from a DataReader
I found a workaround for this error, but am now really curious as to why this would be happening, was wondering if anyone else has had this error.
My function is as follows:
public void ...
3
votes
3answers
6k views
ExecuteReader requires an open and available Connection. The connection's current state is closed
Ok, I asked about this very error earlier this week and had some very helpful answers and without doubt things have drastically improved since I started following the suggestions.
However, now I am ...
3
votes
2answers
3k views
How to use SqlDataReader if I'm having more than one select statements in a stored procedure
I have coded three select statements in stored procedure in Microsoft SQL Server 2005. Both select statements return multiple number of records and table list for select statements is different. One ...
3
votes
4answers
4k views
Can you get the column names from a sqldatareader?
After connecting to the database, can I get the name of the all the columns that where returned in my sqldatareader?
3
votes
6answers
3k views
Slow performance of SqlDataReader
I've query executing ~2 secs in MSSMS (returning 25K of rows)
Same query used in .NET (sqlReader) exetuting few minutes!
I've also tried to execute only reader
(commented all code in while loop ...
2
votes
3answers
35 views
Reference data in SQLDataReader by column and rows or any alternative
I am running a stored procedure and the result is this format
+------+--------+-----+-------+
| ID | Resign | Sum | Count |
+------+--------+-----+-------+
| 1234 | 0 | 400 | 3 |
| 1234 | ...
2
votes
1answer
73 views
Getting exception: Invalid attempt to read when reader is closed
I am attempting to read a MySQL database from my C# project using the MySQL drivers for .net off the MySQL site.
Though I did a bit of research on this (including this), I am still flummoxed why this ...
2
votes
2answers
122 views
Executereader and execute non-query in a single connection in ado.net
The below snippet employs multiple queries inside the same connection string. first i'm selecting the some datas from the DB then before closing the datareader(dr) i would like to do some validations ...
2
votes
3answers
128 views
How to Close a DataReader on Exception
I have the following code in some methods of my Data Layer:
StringBuilder sb = new StringBuilder();
SqlCommand s = new SqlCommand(sb.ToString(), conn);
try
{
SqlDataReader dr = ...
2
votes
6answers
394 views
Gridview not populating while using a While() structure. C# ASP.Net
I am having problems with this grid view. I am populating it with a query. However, it will not populate or even appear if I use a while(reader.Read()) structure. Without the while structure, it ...
2
votes
4answers
173 views
DataReader ordinal-based lookups vs named lookups
Microsoft (and many developers) claim that the SqlDataReader.GetOrdinal method improves the performance of retrieving values from a DataReader versus using named lookups ie. reader["ColumnName"]. The ...
2
votes
4answers
750 views
c# - Fill generic list from SqlDataReader
How can I add values that a SqlDataReader returns to a generic List? I have a method where I use SqlDataReader to get CategoryID from a Category table. I would like to add all the CategoryID a generic ...
2
votes
3answers
696 views
DatagridView in Winforms , Is SqlDataReader automatically closed on end of loop?
int a ;
SqlCommand cmd = new SqlCommand (" Select * From items order by ItemID ", conn );
SqlDataReader reader = cmd.ExecuteReader();
while(reader.Read())
{
a = ...
2
votes
2answers
132 views
F# - Convert Sequence.Generate to Sequence Expression
I have the following code that uses Sequence objects to read data from a database table.
V1 works correctly but since the Seq.generate function is deprecated I receive compiler warnings.
I tried to ...
2
votes
3answers
244 views
C# SqlDataReader only returns values > 0
This has been bugging me for the past several hours and I can't seem to find the answer..
I have the following query
SELECT A, SUM(B) AS total
FROM table
GROUP BY A
now the ...
2
votes
1answer
308 views
Powershell 2.0 - SqlDataReader closing when passed into a function
I am interacting with a set of custom .Net 2.0 assemblies, with Powershell 2.0, to automate a current task. I load all the required dlls and call a DAL method, in the dll, to retrieve a ...
2
votes
5answers
472 views
Read data from SqlDataReader
I have a SQL Server 2008 database and I am working on it in the backend. I am working on asp.net/C#
SqlDataReader rdr = cmd.ExecuteReader();
while (rdr.Read())
{
//how do I read ...
2
votes
5answers
877 views
ADO.NET Question: When to use DataReader, DataAdapter
i just wondering, what things i have to consider when using DataReader and DataAdapter in fetching data from the database and whats the difference between this two other the datareader needs open ...
2
votes
3answers
2k views
MySQL Connector/NET connection multiple DataReaders per Connection?
Hey guys, I'm migrating from Java to C# now that I've realized I prefer the C# language features over the ones in Java, but I have this small issue. In MySQL Connector/J and JDBC, I believe that one ...
2
votes
3answers
377 views
C# : Forcing a clean run in a long running SQL reader loop?
I have a SQL data reader that reads 2 columns from a sql db table.
once it has done its bit it then starts again selecting another 2 columns.
I would pull the whole lot in one go but that presents a ...
2
votes
2answers
563 views
If we cannot retrieve output parameters until SqlDataReader is closed, then why…?
1)
While the SqlDataReader is being used, the associated SqlConnection is busy serving the SqlDataReader, and no other operations can be performed on the SqlConnection other than closing it. This ...
2
votes
2answers
2k views
ADO.Net DataReader timeout issue
I am using ADO.Net + C# + VSTS 2008 + ADO.Net to connect to SQL Server 2008 Enterprise. I am using almost the same pattern/sample mentioned here -- using ADO.Net DataReader to retrieve data one entry ...
2
votes
6answers
470 views
looking for suggesions re: accessing data and populating List/arraylist/list
I am looking to do something like this:
access records in db with a datareader. I won't know how many records will come back - somewhere between 1 and 300 most of the time. The data will look ...