A DataReader reads a forward-only stream of rows from a data source.

learn more… | top users | synonyms

-1
votes
0answers
19 views

How can I read in second table?

I have the following code which is taking some ids from Table programari and adding them to the corresponding Item from a listview. MySqlConnection connection = new MySqlConnection(ConString); ...
1
vote
0answers
140 views

DataReader.Read() always returns false

I've been searching for hours now. I can't find anything helpful for my problem. The Read()-function always returns false. If I run the SQL-command with sqlplus I get this result: GERA_ID ...
0
votes
1answer
49 views

Why converting datetime to string gets me the error : ORA-01843: not a valid month

I have the following column : CheckingTime ------------ 1 7/5/2011 2 3 4 5/8/2012 (the colomn format is date.) I'm using a datareader to read all colomns and rows in DB1 and insert them into DB ...
0
votes
1answer
56 views

unable to go into while loop in c# (with an OleDbDataReader object)

Please check the comment made in the middle of the code, it shows where is the problem and how I try to solve it ... thanks ! The problem is within the statement: "while ((ObjReader.Read()) ...
1
vote
2answers
35 views

DataReader Name Based Lookups - What's actually happening under the hood that makes them so much slower than ordinal based lookups in loops?

It makes sense that a name-based lookup might be a little slower with multiple matching rules than one that is an integer index. However, I have a hard-time believing that this explains a 3% (or 5-7% ...
0
votes
2answers
30 views

How to retrieve all fields for a given record using OracleDataReader?

My question, which is similar to this one, is how can I use OracleDataReader to retrieve all the fields for a given record? Currently, I've been using this method, which returns only one column value ...
0
votes
1answer
66 views

ASP.NET Page keeps refreshing (VB.NET)

Whenever I try this code the page remains refreshing. Imports System.Data.SqlClient Imports System.Data Partial Class ProjectReport Inherits System.Web.UI.Page Private myTotal As Decimal = ...
1
vote
3answers
91 views

SqlQuery return null everytime

I'm trying to execute a store procedure like this: public bool Test(){ var searchItem=base.Database.SqlQuery<QueryEntity>("exec nameOfMyProcedure @param1={0}",param13).FirstOrDefault(); ...
0
votes
1answer
150 views

ASP.NET VB.NET - Page doesn't load

Can anyone tell me why the page keeps loading (never loads) when I try to run this this code? Imports System.Data.SqlClient Partial Class Admin Inherits System.Web.UI.Page Protected Sub ...
0
votes
1answer
53 views

NHibernate's equivalent of LINQ to SQL's and EF's Translate<T>()

I have a query that due to performance reasons I need to craft the actual command using raw ADO.NET (it involves table-valued parameters). With LINQ to SQL or EF, I could simply pass the DbDataReader ...
0
votes
1answer
102 views

Datareader.HasRow is wrong

Can anyone confirm or dispute a problem I'm having accessing an ACCDB database with a DataReader. I setup the DataReader and query the database. When I check DataReader.HasRows, I get true, no matter ...
0
votes
0answers
52 views

vb.net sqldatareader not binding into Gridview

In the following code below, I would expect the following outcome ' Col1 Col2 Col3 ' FirstRow 1 100 Instead, I see the following: ' Col1 Col2 Col3 ...
0
votes
1answer
75 views

SQL Datareader return values

I want to return my database values, in this case: history of my browser from SQL What i have: // lezen van records public void lezen(string tabelNaam) { // parameters aanmaken en opvullen ...
0
votes
0answers
81 views

Retrieve value from database and assign that value to a variable in Vb.net

hello :) i am kind of new to programming so please keep it simple .. I searched for this but i didn't found anything (i am sure there is somewhere but i wasn't able to find it), so i am asking here. ...
0
votes
1answer
138 views

Nested Datareader in VB.Net

I am Using .net 4.0 Framework (VB) with SQL Express 2005. I need to use do while nesting with datareader. some thing like....... SQLQuery1="Select * from Table1" cmd = New ...
0
votes
2answers
90 views

The name 'colType' does not exist in the current context

I am losing my mind. I am attempting to loop through a dataset's rows and columns in search for a match between the dataset's name column -- and the ColumnName from a DataReader object. I have a new ...
1
vote
1answer
50 views

Unable to cast DBNull to string

In my ASP.NET WEB API application which is using Signalr I am using below code using (var reader = command.ExecuteReader()) return reader.Cast<IDataRecord>() ...
0
votes
0answers
60 views

C# DataReader ToLookup Conversion (with SortedSet)

I'm trying to get data from an Oracle database with a DataReader (as loading it into memory with a DataTable or DataSet is not a viable option at the moment). What I would then like to have is a ...
0
votes
3answers
152 views

Data reader has rows but not populating combobox

I have this piece of code that is not populating combobox from datareader. I have done all kinds of checks and confiirmed that the database is connecting and the query is also correct. ...
1
vote
3answers
265 views

Access a specific row in DataReader

I have a datareader to display a list of gameweeks in a js carousel. I need to be able to add an if statement to change the div class of the current gameweek. This is my current code: if ...
0
votes
2answers
96 views

Datareader not displaying first row

I am looping through my database to display a list of leagues a player is associated with. If a player is not a member of any leagues then a message displays to tell them. Here is the code if ...
0
votes
4answers
72 views

Is there a way to tell if a DataReader has been iterated through without calling .Read()?

Let's say I return a DataReader and completely iterate through it using this code: While Reader.Read Dim x as string = Reader.GetString("x") End While I would like to be able to determine ...
4
votes
3answers
86 views

I am wondering about the state of connection and impact on code performance by 'yield' while iterating over data reader object

Here is my sample code that I am using to fetch data from database: on DAO layer: public IEnumerable<IDataRecord> GetDATA(ICommonSearchCriteriaDto commonSearchCriteriaDto) { ...
0
votes
2answers
172 views

How to check if SQLDataReader item is DateTime os String type value?

I have a function that converts datareader to CSV. SQL return YYYY-MM-DD HH:MM:SS.000 while .net converts it to MM/DD/YYYY value. I would like to check if the value in the datareader is DateTime and ...
0
votes
1answer
162 views

MysqlException was unhandled DataReader with this connection must be closed vb.net

I have encountered this problem: ERROR: There is already an open DataReader associated with this Connection which must be closed first. Please have a look on my code: Dim sqlQuery As String = ...
0
votes
3answers
108 views

MySqlDataReader always Returning False even though data is there In Asp.net

Hii Guys !!! I made one C# class and one handler in Asp.net..In My C# file I made a function which is as Below: public MySqlDataReader Consulta(String sql){ String error=""; ...
0
votes
0answers
73 views

How to Return A DBDataReader from a Method so that the Caller can Read It?

I created this method to execute a query that returns a reader. But every time I read the result value using While(Reader.Read()) {} it returns an exception, Cannot Read if the reader is closed. Is my ...
0
votes
0answers
103 views

How to insert(merge) data to existing datatable using datareader

what i was trying to do is to generate a list of products added by user into the datagridview but as i am using datatable.load(datareader) it always reset the previous value of the datatable,i also ...
0
votes
1answer
48 views

Troubleshoot object reference error when filling mvc models with datareader?

I am using MVC 3 and I am using a datareader to create a list of items that have subItems. When I add the subitem I get "Object reference not set to an instance of an object." With the following code: ...
1
vote
2answers
126 views

Concentrate many rows into list using a DataReader

I have the following tables: TEAMS: ID Name ------ --------- 1 Giants 2 Yankees 3 Cool Guys PLAYERS: ID Name Team IQ ...
0
votes
2answers
100 views

Using class outside of While where it is defined

I am trying to have my application check the Admins table in my SQL database, and then get the name of the department that the current user belongs to. After that, I want to check a different table ...
1
vote
1answer
80 views

Accessing my Class and presenting the output on the presentation layer

I have a class that I have written to run a stored procedure, start a datareader and put the contents into a arraylist. CLASS CODE public class GHPSlider { private clsDbAccess _db; private ...
0
votes
0answers
122 views

Weird error on transactions -> using NonQuery getting Reader must be closed

I'm developing a client in C# and POSTGRESQL. It needs to parse some texts and insert data in the tables correctly, so we have a parsed which gives me a Dictionary for each tables (4 at the moment). ...
1
vote
0answers
86 views

Generic DataReader combined with Generic resultset processor

I am looking to solve the following issue using two generic entities, namely (and symbolically expressed), GetItems<SomeReaderType>() and ProcessItems<SomeProcessorType>(). ...
1
vote
2answers
336 views

C#, problems with getting double values from MySQL database

I have a MySQL database with the table "Products". A column in "Products" is called "Price" and has the datatype "double". I need to retrieve the values from that column, so I create a reader, etc.: ...
1
vote
2answers
1k views

Exception of type 'System.OutOfMemoryException' was thrown. C# when using IDataReader

I have an application in which I have to get a large amount of data from DB. Since it failed to get all of those rows (it's close to 2,000,000 rows...), I cut it in breaks, and I run each time the sql ...
1
vote
1answer
401 views

“Out Of Memory” exception while exporting from SQL Server to Excel, using EPPlus library

I'm using the EPPlus .NET library in order to export data from SQL Server to an Excel file. I'm using the SqlConnection class to read the data. For every row of the SqlDataReader cursor, I iterate ...
0
votes
5answers
254 views

Reader.Read() fails to read rows even though it it has rows

I have a problem where it appears that the reader indicates that it has rows from the returned SQL but the while loop for the reader never runs. I put a messagebox in the reader.hasrows as a ...
0
votes
1answer
96 views

DB2DataReader object has data but HasRows property is false

I have a program that uses a DB2 stored procedure called from a C# batch job. Once the .ExecuteReader() call has been made, Visual Studio 2010 shows that the FieldCount for the data reader object is ...
1
vote
3answers
92 views

multiple if statements missing data

Just want to ask why this wont work for me? I'm trying to bring back data for booking system (or something which like that). The problem is that it only go to only one if statement and ignore the ...
1
vote
4answers
715 views

Load .dat file and read

I have text .dat file and I load this file from my main class and read in my DataReader class. but I get errors that i have to change my modifier to static. I can't do that because it is required to ...
0
votes
1answer
385 views

Fill the combo ExtJS by the custom data

I have Combo ExtJS, that should be filled by the data from Spring MVC - like this: var LongRecord = Ext.data.Record.create([ {name: 'id', mapping: 'id'} ]); var comboStore = new ...
0
votes
1answer
66 views

Malformed CSV at end

Hey all i am trying to figure out a way of correcting the error in my CSV file before it errors out with a MalformedLineException. My code is this: Using myreader As New ...
0
votes
1answer
492 views

SqlDataReader does not read all records

I have a very weird problem in the most simple piece of VB.NET code: Public Sub ReadIDs(i_oDataReader As Data.SqlClient.SqlDataReader) m_aFullIDList = New Generic.List(Of Integer) While ...
2
votes
0answers
443 views

Metro StreamSoket DataReader.LoadAsync() ObjectDisposedException

I have problems with Windows 8 UI application. I'm using client-server communication and client needs to check new messages all time. So I use such code, where _socket is a StreamSoket: private ...
1
vote
0answers
367 views

Load binary files with DataReader in windows 8

I'm trying to convert an old game of mine to windows 8 and I'm having a lot of trouble with my file loading. I'm trying a simple test with DataReader but I don't get the correct values. First I ...
1
vote
4answers
655 views

Checking whether DataReader is empty

My code does not run when the DataReader is empty. Below is my code. My work is about Date Scheduling. And my problem is about a holiday constraint. When the user enters the dates (start date and end ...
11
votes
2answers
2k views

Multiples Table in DataReader

I normally used DataSet because It is very flexible. Recently I am assigned code optimization task , To reduce hits to the database I am changing two queries in one procedure. one Query returns the ...
1
vote
1answer
153 views

how to stop oracledatareader from reading

I have created a software to read data from Oracle DB send it by SMS but I want to stop datareader from reading when I hit C key on the keyboard but when I done this I get this exception message: ...
0
votes
2answers
825 views

Read data from Access Database into listbox

Can someone tell me how to fix this error? SqlCommand cmd = new SqlCommand(sqlCmd, conn) --> conn: Aurgument type 'System.Data.OleDb.OleDbConnection' is not assignable to parameter type ...

1 2 3 4 5 6