Tagged Questions

0
votes
3answers
23 views

why I can’t use two datareader in one procedure?

Hi everyone, can you explain me why I can't use two datareader in on procedure? Here is the sample code: Private Sub Do_Execute() Dim conx as SqlConnection Dim cmd1 as SqlC …
1
vote
7answers
71 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 databas …
0
votes
3answers
34 views

c#/sql-server, trying to get data to two ddl’s from two tables…in one sqlDataReder

Hi all, Well, i am tring to do something nice (nice for me, simple for you guys), i was told i can do it, but i have no idea where to start. I have two DDL's in a page, i need on …
1
vote
5answers
110 views

How to tell if a datareader is open on a connection and close it

Hi, I'm setting up a little thing for connection pooling and on of the more common bugs that we have occur(its always an easy fix, but we just can't remember reader.Close()!) it is …
0
votes
2answers
41 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 …
0
votes
1answer
21 views

How to use PagedDataSource.CopyTo (or otherwise work with the same data I’m sending to my Repeater)

I'm populating a Repeater with a PagedDataSource and after I populate that Repeater, I want to perform some other operations on the subset of data that makes up the page I'm sendin …
1
vote
2answers
43 views

SqlDataReader, a firehose cursor - no buffering?

So I understand SqlDataReader is quite fast, you dont know how many rows you'll get and it only allocates memory for each row at a time. So if I have a million rows of small rows ( …
0
votes
3answers
29 views

Performance Concerns between DataTable and SqlDataReader to fill Data with FlexGrid

Which one is more faster between DataTable and SqlDataReader while I'm trying to fill Data into FlexGrid with VB.NET?
0
votes
2answers
56 views

VB.net / C# dont reference sqlreader in client portion then where?

Assume I have a form that has say 5 text boxes and I need to pull some data from a database then set those 5 text boxes with that data. So assume I have 3 basic layers: the code …
0
votes
3answers
110 views

DataReader associated with this Command which must be closed first.

I am getting the following error; "There is already an open DataReader associated with this Command which must be closed first." is it because I have used the reader in foreach l …
0
votes
2answers
42 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 f …
0
votes
4answers
282 views

SqlDataReader - How to convert the current row to a dictionary

Is there an easy way to convert all the columns of the current row of a SqlDataReader to a dictionary? using (SqlDataReader opReader = command.ExecuteReader()) { // Convert the cu …
0
votes
1answer
45 views

No results returned to a reader but the same query works thru SQL Management Studio

Hello, I'm experiencing weird behavior with some of full text search queries, especially those with multiple words. These are working fine when executed thru Management Studio bu …
0
votes
2answers
85 views

SqlDataReader.Read() always returning false

Hi, I have the following situation: using (SqlConnection conexao = new SqlConnection(ConnectionString)) { SqlCommand comando = new SqlCommand(query, conexao); comando.Par …
0
votes
2answers
94 views

ADO.Net DataReader timeout issue

Hello everyone, 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 D …

1 2 3 next
15 30 50 per page