Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
17k views

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

I have data in a DataReader which I want to be converted to a List<T>. What is a possible simple solution for this? For e.g. in CustomerEntity class, I have CustomerId and CustomerName ...
12
votes
13answers
3k views

Handle DBNull in C#

Is there a better/cleaner way to do this? int stockvalue = 0; if (!Convert.IsDBNull(reader["StockValue"])) stockvalue = (int)reader["StockValue"];
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 ...
7
votes
3answers
5k 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 class 'Employee' with ...
7
votes
5answers
3k views

Using ASP.NET MVC without an ORM

In my ASP MVC application I'm using standard SQL (rather that Linq to SQL or other ORM) to query my database. I would like to pass the database results to my view and iterate over the results in my ...
7
votes
6answers
2k views

.NET DataTable skips rows on Load(DataReader)

I'm trying to populate a DataTable, to build a LocalReport, using the following: MySqlCommand cmd = new MySqlCommand(); cmd.Connection = new ...
5
votes
2answers
610 views

How do I mock the method GetValues() in System.Data.IDataReader?

How do I mock the method GetValues() in System.Data.IDataReader? This method changes the array of objects passed to it, so it can’t simply return a mocked value. private void ...
4
votes
2answers
3k views

DataReader best-practices

Similar to this question, but the answers never really got around to what I want to know. Is there any standards around getting values from a DataReader? I.e., is this ...
4
votes
7answers
6k 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 list with data coming ...
3
votes
3answers
495 views

Oracle Datareader in .Net - way too slow (over network)

Before I get the "have you tried ODP.net?" answers, yes I have and am using it now. I'm moving data from oracle to sql server (not important) and am using a datareader on the oracle connection. ...
3
votes
4answers
454 views

Extract from DataRow or DataReader with one function

I'm looking for a solution for how to be able to extract data from a database when using either a DataRow and a DataReader with only one function (or one base function). My problem stems from the ...
3
votes
2answers
197 views

Difference between (string)reader[0] and reader[0].ToString()

Is there a difference between DataReader[0].ToString() and (string)DataReader[0]? My guess is that (string)DataReader[0] might fail if the database type isn't a string type, where ...
3
votes
4answers
96 views

What to use for a datagrid with a lot of data?

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 ...
3
votes
4answers
423 views

C# object creation from datatable

I'm just getting my head round C#. I've been creating classes and objects so say i created a class called Member: public class Member { public int MemberID; public string FirstName; ...
3
votes
3answers
286 views

Close reader before closing connection

Should you always close a DataReader before closing the connection, or is it okay to just close the connection? By just closing the connection does that effectively close the reader? (This is for ...
3
votes
3answers
642 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. Any ideas for a ...
3
votes
2answers
1k 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 serialize them back ...
3
votes
7answers
5k views

Is datareader quicker than dataset when populating a datatable?

Which would be quicker. 1) Looping a datareader and creating a custom rows and columns based populated datatable 2) Or creating a dataAdapter object and just (.Fill)ing a datatable. Does the ...
3
votes
1answer
1k views

Output parameters not readable when used with a DataReader

When using a DataReader object to access data from a database (such as SQL Server) through stored procedures, any output parameter added to the Command object before executing are not being filled ...
2
votes
5answers
63 views

asp.net datareader must be closed

My code: SqlConnection con = new SqlConnection(WebConfigurationManager.ConnectionStrings["myConnectionString"].ConnectionString); SqlCommand cmd = new SqlCommand(); //.......... cmd.CommandText = ...
2
votes
2answers
111 views

DataReader within a DataReader

I have a DataReader...I use the result of the DataReader as parameter on another DataReader that is connected to a command with a Stored Procedure type. It works fast for now but I worry about the ...
2
votes
2answers
284 views

VB.NET - Multiple Result Sets in one query?

I have a stored procedure: CREATE PROCEDURE [TestProc] AS BEGIN select '1a', '1b' select '2a', '2b', '2c' select '3a', '3b' END If I execute the following query using SQL Management ...
2
votes
0answers
142 views

Dapper handling returned empty result set

We are using Dapper to map our sql data and so far it has worked very well. I have a case though where we are doing something similar to: someObject = con.Query<T>("GetInfoSproc", p, ...
2
votes
1answer
99 views

Disposing a data reader when constructing it by value vs reference

Rookie question about when a data reader actually gets released when it’s constructed in a class using ref vs. var. I’ve been testing this today and the results are puzzling me a bit – hoping to get ...
2
votes
1answer
477 views

How to map a DataReader to class properties and maintain performance?

Preamble: All data connection strings, connections, etc are created using DbProviderFactories. Code is mixed C# and VB.Net from mulitple libraries. I am mapping a DbDataReader to entities and have ...
2
votes
1answer
148 views

Can't get RhinoMock to iterate throug a DataReader

I am trying to mock IDataReader with RhinoMocks, but I am having a hard time making it iterate through the DataRows. Here is what I have done so far: [TestFixture] public sealed class ...
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
347 views

Fastest way to fill a business object with a datareader?

What is the fastest, best & recommended way to fill a business object by using a datareader in DAL ? Currently I use myObject.Name=(string) myDataReader["Name"]; myObject.Age=(int) ...
2
votes
3answers
485 views

DataReader returns no rows — rows are present in database

Okay world, I'm having some trouble. No, this is not 'homework' I've got some code which needs to do two things: 1) Read a list of artists from a database 2) Find all tracks written by that artist ...
2
votes
2answers
204 views

How to find unclosed DataReader?

I maintain a large application in ASP.Net 1.1 that has been altered by many people (including students). Obviously, the code has rarely been reviewed, so it is a lot of... err... stupid bugs. The most ...
2
votes
3answers
458 views

DataReader Close Method Throws OdbcException

Update: Sorry for the delay over the weekend but some updates to your comments: I have updated the stack trace to include the entire stack. As well, the problems still exists when I manually close the ...
2
votes
2answers
153 views

.NET - Begin reading from DataReader before query is complete?

I'm currently working on a program that is converting an old database to a newer style and one of the tasks I've been assigned is to remove some old binary columns and convert those into documents in ...
2
votes
1answer
345 views

Export OracleDataReader to Excel in C#

I have a code like this, string ConnectionString = ConfigurationManager.ConnectionStrings["ora"].ConnectionString; OracleConnection conn = new OracleConnection(ConnectionString); string sql = ...
2
votes
3answers
169 views

How to 'select' the current identity value for a table?

dbcc checkident (MyTable, NORESEED) Will show the identity value in a message. I can't see the message as I need to select the identity value through a DataReader. Anyone any ideas? Thanks folks
2
votes
2answers
201 views

OleDbException (0x80004005): Not specified error?

I created a button (Next) to navigate in a Table called CHAPTERS; My problem is that the button work Two, and sometimes three times. After that I get [Not specified error]. This is my code : Dim ...
2
votes
2answers
1k views

How to count rows in MySqlDataReader?

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 the number of rows ...
2
votes
2answers
1k views

Can I avoid the open DataReader exception when using nested commands?

Can I avoid the open DataReader exception ("There is already an open DataReader associated with this Command which must be closed first.") when using constructs like this one? public void ...
2
votes
9answers
4k views

Linq to Sql vs Nhibernate vs SubSonic vs Stored Procedure (Help)

I am looking to develop a website for a news channel. So, Obviously its gonna receive a lot of hits daily and will be updated a lot on daily basis.. I have experience in ASP.Net and SQL Server.. ...
2
votes
4answers
554 views

SqlDataReader executing TSQL is faster than management studio executing TSQL

If i run a TSQL Statement in management studio and run the same the query through SqlDataReader, the latter gives the result faster than the former... Any reason??
2
votes
5answers
2k views

Stored proc Output parameter + Select not passing back output parameter

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 values to output parameters ...
2
votes
12answers
7k views

Datareader returns no results in VS yet Stored Procedure returns multiple result sets in Sql Server

I am having trouble retrieving results from my datareader in visual studio 2008. I have several stored Procs in the same database. I am able to retrieve values from those that dont receive input ...
2
votes
1answer
543 views

SqlDataReader: In this scenario, will the reader get closed?

I am cleaning up the DataReaders in an old .NET 1.1 project that I inherited. The previous developer coded the data-access-layer in such a way that most of the DAL methods returned SqlDataReaders ...
1
vote
2answers
37 views

Why is that I get zeroes added to decimal values that I am pulling from MS Access database?

I originally asked this here, but had to ask separately. Why is it that I'm getting values like 2.01000000 from the database, even though I am storing only decimal 2.01? In my database I see it as ...
1
vote
2answers
54 views

FbDataReader to ArrayList in C#

I am trying to push the data from an FbDataReader into an ArrayList. Here is my sample code: ArrayList aList = new ArrayList(); FbCommand fbCommand = new FbCommand("SELECT * FROM users", dbConn); ...
1
vote
1answer
64 views

Error: “No data exists for the row/column” using OdbcDataReader

Even though I know that there is data for the exact SQL query I'm performing, for the fact that I am doing the SQL query directly on the database, I continually get an exception saying that no data ...
1
vote
4answers
55 views

Error while checking if ID exists in database file

I am trying to check if certain ID already exists in database. When it doesn't, I want user to change the id to something else. All this is done in TextChanged function of textobx. The problem is ...
1
vote
1answer
50 views

How do i get the ordinal of a column in a DataReader

How can i find out if a column exists in a DataReader's results set? i try: int columnOrdinal = reader.GetOrdinal("LastName"); columnExists = (columnOrdinal < 0); but GetOrdinal throws an ...
1
vote
3answers
66 views

How can I read string value and store it in a array using data reader

I am reading some list of values in the result but I am not sure where I am going wrong, I wont know the array size so I cant assign any value to it string[] result = null; while (reader.Read()) { ...
1
vote
3answers
181 views

IDataReader - Any way to get the total rows?

Is there any way to get the total number of rows returned from a SQL query (from the IDataReader) before iterating through the rows by using reader.Read();?
1
vote
1answer
120 views

Can I reset and loop again through MySqlDataReader?

I have a MySqlDataReader object, with the result of this query : SELECT warehouse, leasing, transportation, maintenance, manpower FROM retail WHERE zone = 'Central' GROUP BY warehouse And then I ...

1 2 3 4