Tagged Questions
The idatareader tag has no wiki summary.
6
votes
4answers
1k views
using IDataReader to call store procedure with parameters
I use IDataReader to call stored procedures without parameters. I am not finding examples of how to do this when parameters are present. Does IDataReader handle parameters of stored procedure?
Please ...
5
votes
4answers
4k views
How do I convert a DataTable to an IDatareader?
We all know that DataReaders are quicker than DataTables since the a DataReader is used in the construction of a DataTable.
Therefore given that I already have a DataTable.... Why would I want to ...
4
votes
3answers
1k views
IDataReader and “HasColumn”, Best approach?
I've seen two common approaches for checking if a column exists in an IDataReader:
public bool HasColumn(IDataReader reader, string columnName)
{
try
{
reader.getOrdinal(columnName)
...
3
votes
5answers
3k views
Checking to see if a column exists in a data reader
Is there a way to see if a field exists in an IDataReader-based object w/o just checking for an IndexOutOfRangeException?
In essence, I have a method that takes an IDataReader-based object and ...
3
votes
5answers
280 views
Improving DAL perfomance
The way i currently populate business objects is using something similar to the snipet below.
using (SqlConnection conn = new SqlConnection(Properties.Settings.Default.CDRDatabase))
{
using ...
2
votes
3answers
109 views
Convert C# lambda function to VB.net
I have this function that maps a IDataReader to a class. It is obviously written in C#. My co-worker wants to use the same method in his code, but he is writing in VB.net. Basically I am having ...
2
votes
3answers
113 views
c#, interface, assignment
I have a question. Interface does not hold any definition. Interface can not be instantiated. How can this code be valid ?
IDataReader reader = cmd.ExecuteReader()
cmdExecuteReader returns an ...
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
5answers
218 views
C# Reader Disposal Review
I am using the Enteprise Library to query my database. When I run a query, I am relying on stored procedures. Currently, I am using code that looks like the following:
Database database = ...
2
votes
4answers
640 views
How to convert SqlDataReader to IDatareader
What is the easiest way to convert a SqlDataReader to IDatareader.
Or is it easier / possible to convert a List<> object to a IDataReader
2
votes
1answer
264 views
Does IDataReader.GetName(i) work with empty data readers?
I want in the case of an empty data reader to output the field names with empty values.. ie
Product: -
Price: -
So, are IDataReader.GetName(i) and IDataReader.FieldCount safe to use when they have ...
1
vote
4answers
47 views
Should IDataReader::Dispose call IDataReader::Close?
I'm implementing IDataReader and I wonder if the implementation of Dispose is supposed to call Close or not.
Also, should Close call Dispose?
My guess is that Close shouldn't call Dispose and ...
1
vote
2answers
58 views
Could not read values using IDataReader
I want to read data to a list from database.
I tried the following code
public List<T> StoredProcedureForIList<T>(string spName, params IDataParameter[] commandParameters)
{
...
1
vote
1answer
64 views
Adding a secondary data source to an ASP.NET data repeater
I have an ASP.NET data repeater. This is currently set to a data source obtained from an SQL query, as follows:
IDataReader dr = GetData(sql);
myRepeater.DataSource = dr;
myRepeater.DataBind();
...
1
vote
1answer
115 views
Stored Procedure in Oracle and IDataReader.Read() in VB.NET
I have a Stored Procedure that seems to be very slow.
Executing it in Oracle SQL Developer;
SET TIMING ON;
DECLARE
CUR_OUT UTILS.T_CURSOR;
P_ARTTYID NUMBER;
P_ORDERST VARCHAR2(200);
...
1
vote
1answer
239 views
AutoMapper with a list data from IDataReader
using (IDataReader dr = DatabaseContext.ExecuteReader(command))
{
if (dr.Read())
{
AutoMapper.Mapper.CreateMap<IDataReader, ProductModel>();
...
1
vote
2answers
203 views
c# IDataReader SqlDataReader difference
Can someone tell me the difference between these two pieces of code? Why use IDataReader?
using (IDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
{
// get data from ...
1
vote
2answers
110 views
IDataReader from Oracle Overflows when returning decimal values
I have some code that is responsible for converting data from an IDataReader into an IronPython.Runtime.List of PythonTuples. This same code is employed for several different kinds of database ...
1
vote
2answers
417 views
Advantages of using SQLDataReader over a reader that implements IDatareader?
What are the advantages of using a SQLDataReader as opposed to a reader that just implements IDatareader if I'm using SQL Server >= 2005?
Does the SQLDatareader simply have more functionality to ...
1
vote
2answers
495 views
CBO.FillCollection throwing “No parameterless constructor defined for this object.” error
I'm trying to fill a collection from an IDataReader that was returned by another method... for some reason it keeps throwing a "No parameterless constructor defined for this object." error for this ...
1
vote
1answer
120 views
Best practices for getting around DB differences with an IDataReader
I have a simple value object which I populate with data from an IDataReader (could be the result of a query to either an Oracle or MS SQL database). The factory method for this object looks something ...
1
vote
1answer
507 views
phxsoftware System.Data.SQLite DbDataReader misbehaving
The following post relates to the System.Data.SQLite data provider by phxsoftware (http://sqlite.phxsoftware.com)
I have a question (and possibly a problem) with DbDataReader’s Read method and/or ...
1
vote
4answers
799 views
MySqlConversionException when accessing DateTime field from DataReader
I have a C# application over MySql, using MySQL Connector; I'm trying to make a
DataReader request, the query executes fine, however, when trying to access a DateTime field, i'm getting ...
1
vote
3answers
549 views
Does a IDataReader get automatically get closed when set as a datasource?
When you assign an active IDataReader object to either a Repeater, GridView, etc., does it automatically get closed upon completion of the DataBind method call or do we still need to explicitly close ...
0
votes
1answer
25 views
In Subsonic 2.1 how do I get a strongly typed object from find?
In Subsonic 2.1 how do I get type T from Find?
Animal criteria = new Animal();
IDataReader result = Animal.Find(criteria);
I want result to be of type Animal not IDataReader. How ...
0
votes
2answers
81 views
Memory leak OracleConnection with Oracle Data Access (ODP) in VB.Net, but not C#
Why does the code below cause a memory leak when executed? The error only happens when I use Microsoft Visual Studio 2005 or 2008 in vb.net language. If I use C # is, there is no problem.
Dim strCon ...
0
votes
0answers
56 views
How to select n rows using IDataReader
[ASP .Net - Microsoft Visual Web Developer 2010]
Hi all,
I've problem with this code:
With MenuNavCatDataSource
Dim xReader As Data.IDataReader = .Select(DataSourceSelectArguments.Empty)
If ...
0
votes
1answer
60 views
moq returning dataReader
I'm having a strange experience with moq/mocking.
Im trying to mock the data going into a method so that i dont have to have adatabase available at test time.
So im loading in some data ive ...
0
votes
0answers
150 views
GetSchemaTable Columns Missing?
I am using this code to get data from a dataReader into a DataTable which can then be serialised.
However, it looks like any column with a null value isnt being written to the xml.
I cant see the ...
0
votes
1answer
52 views
Error when binding repeater with IDataReader after converting asp.net 3.5 to 4.0
I am trying to migrate asp.net 3.5 application to asp.net 4.0 version.
asp.net 3.5 is working without any issues, after migrating to asp.net 4.0 getting the below error
"An invalid data source is ...
0
votes
2answers
92 views
sql stored procedure - Having problems retreiving multiple rows of data with Idatareader
I have a stored procedure that does this:
SELECT TOP 4 FROM dbo.test
(table contains 5 rows)
My c# code is:
IDataReader test= ((IDataReader)(DataProvider.Instance().ExecuteReader("fetchtest")));
...
0
votes
1answer
103 views
IDataReader to execute stored procedures
I am using IDataReader to get the data from db using stored procedure. ie something like this
using (IDataReader Reader = SqlHelper.ExecuteReader(ConnectionString, "StoredProc1", sqlParam))
{
...
0
votes
1answer
446 views
Unable to cast object of type 'System.Data.SqlClient.SqlDataReader' to type 'System.Collections.Generic.IEnumerable'
I've been trying to understand why it's giving me this error because I'm not using SqlDataReader, I get that I'm using SQL Server and the Interface is returning the specific type but still I'm telling ...
0
votes
3answers
1k views
Null safe way to get values from an IDataReader
(LocalVariable)ABC.string(Name)= (Idatareader)datareader.GetString(0);
this name value is coming from database..
what happening here is if this name value is null while reading it's throwing an ...
0
votes
1answer
827 views
Disposing SqlConnection from a base DAL class when calling ExecuteReader
I've been assigned on a project where the DAL consists of a base class with functions to return IDataReader, an Object (int, string and the like), or a DataSet. An ExecuteNonQuery function also ...
0
votes
2answers
135 views
i datareader can not read image
i can not read image from database by idatareader can any one help me to read it?
0
votes
1answer
131 views
idatareader problem
why My idatareader make error .....?
byteSize = _reader.GetBytes(_reader.GetOrdinal(sFieldName), 0, null, 0, 0);
I want to retrive image from database here sFieldName is database column ...