VS 2008 Use Two Datareader In One Loop?

Feb 7, 2010

I m trying to use two datareader in same loop but its not working. Here is the error and code below Error line: DR1 = MyCommand.ExecuteReader()Error message: There is already an open DataReader associated with this Command which must be closed first.

[Code]...

View 2 Replies


ADVERTISEMENT

VS 2008 - DataReader In Loop Through Text File

Apr 28, 2011

I've wrote a program designed to loop through a text file containing email addresses and unsubscribe said email addresses in our CRM system. I'm having a problem with the following code...

Do While obj_filereader2.Peek() <> -1
strcuremail = obj_filereader2.ReadLine()
Dim dbqCustNo As String = "SQL CODE HERE - SELECT CUSTOMER NUMBER"
Dim exeCustNo As New SqlCommand()
Dim SQLdr As SqlDataReader
exeCustNo.Connection = ConnStr
[Code] ......

The program is falling over when trying to execute the update commands during the datareader loop, with the fabled 'There is already an open DataReader associated with this Command...' error. This program has evolved as I've found problems/better ways of working, so it might be a case of myself just not using the DataAdapter right - I'm guessing I should be using a function of the open DataReader rather than the ExecuteNonQuery command.

View 2 Replies

VS 2008 - DataReader While Loop (Hang After Few Minutes)

Sep 9, 2009

How come my datareader looping at the while loop line it become totally no response and without error eventhough I got use the try catch error catching... it only will hang on after few minute... after few loop. Is it the data reader got time out limit?? If exceed the limit it will no response..? Inside my while loop it do a lot of transaction and each transaction also take quite long time... it will affect?

myCommand = New MySqlCommand("SELECT * FROM stk_cus_inv_hd WHERE DocType=?DocType;", conn1)
myCommand.Parameters.AddWithValue("?DocType", "CS")
myCommand.CommandTimeout = 99999
myReader = myCommand.ExecuteReader
While myreader.read <<---- it jam at here and totally no response my coding... but my interface is clickable...
my lot of work here...
End While

View 11 Replies

How To Loop A DataReader

Mar 18, 2009

If my Select statement finds data that matches the criteria, how do I get myReader (DataReader) to read each record when there are more then one record found?

Dim myReader As MySql.Data.MySqlClient.MySqlDataReader
myReader = myCommand.ExecuteReader()
If myReader.Read() Then

[code]....

View 5 Replies

ExecuteNonQuery Within The Loop Of A Datareader?

Nov 19, 2011

can i do ( ExecuteNonQuery within the loop of a datareader ) in vb.net please help me with example

View 3 Replies

Forms :: Autocomplete Sequence Using DataReader Loop

May 20, 2009

We're using the Autocomplete functionality for some textboxes. We populate the AutoCompleteCustomSource with data from a database query using a datareader loop. The data in the query is sorted by 'recently used', the most recently used entries are at the top.

Let's say the sequence op the AutoCompleteCustomSource is
'AM1900'
'AF2000'
'AD1950'

After typing an 'A' in the textbox, I would expect the Suggested (or Appended) value to be 'AM1900'. The suggested value however is always the first item from an alphabetically sorted
AutoCompleteCustomSource list (i.e. 'AD1950')

View 2 Replies

VS 2010 : Create Multi-dimensional Array From Datareader From Datareader?

Feb 20, 2012

I have an SQL statement like:

SELECT FNAME, LNAME, CITY from EMPLOYEE

How do I create a multi-dimensional array from a datareader which should store values like:

John, Doe, LA
Mike, Johnson, PASADENA
Freddy, Kruger, Long Beach

View 3 Replies

Datareader - Error - "there Is A Datareader Associate With This Connection That Need To Be Closed"

Aug 17, 2009

I have a problem with my project. here is the problem:

My code for login is as follows:

dim conn as SqlConnection = New SqlConnection("Data Source.................)
dim cmd as SqlCommand = New SqlCommand("Loguser",conn)
cmd.CammandType = CommandType.StoredProcedure

[CODE]...

Now the error i get is that "there is a datareader associate with this connection that need to be closed"

View 4 Replies

VS 2008 Using A DataReader

Jan 27, 2010

I am working on a project which requires me to connect to a MySQL database. From there I query the database and need to do work on the returned values.

I can query the database just fine. However, now I need to do work on the results. The two columns returned are user_name and user_password. The rows are the user accounts. I would like to take my query results and put each column into its own arrary().

[code..]

Instead of writing the results to the console, I would like to write each column to an individual array. Is there an easier way to accomplish this task? Or, what is the code I must place within the loop to do this.

View 3 Replies

VS 2008 Datareader SQL Express?

Oct 15, 2010

I am doing the basic reading form one table,.it is opening the connection,no problems.i got 5 rows in Categories table with two columns .i got some data as well.using datareader i am trying to read the data.It is not going into while loop

[Code]...

View 5 Replies

VS 2008 DataReader Error In Looping

Mar 29, 2009

[code]I am facing difficulty in coding when intRow loop for the 2nd round. Error message "There is already an open DataReader associated with this Command which must be closed " appear in the above red highlight vb.net code.

View 6 Replies

VS 2008 Fill Array With DataReader?

Jan 11, 2011

How can I fill this Percentage array with Sql data reader..

Dim StudentID As Integer = Me.ComboBox1.SelectedValue
Dim Percentage() As Integer
Dim con As New SqlConnection("Data Source=.SQLEXPRESS;AttachDbFilename=D:Database

[code].....

View 5 Replies

VS 2008 Fill ComboBox With DataReader?

Mar 16, 2010

The code works fine, but I don't know if is necessary while sentence, maybe there is another option..

Dim CMD As New OleDb.OleDbCommand
CMD.Connection = otraConexion
CMD.CommandText = "SELECT * from procedencias"

[Code]....

View 3 Replies

VS 2008 Filling DataTable With DataReader?

Feb 19, 2010

I use firebird server for 2 years and I used this code

[Code]...

View 4 Replies

[2008] Populate Datagridview Using A Datareader?

May 14, 2008

This is some of my code. But how do I populate a datagridview using the datareader.

Dim strSQL As String = "SELECT peopleid,firstnames,surname FROM people;"
Dim cmd As New MySqlCommand(strSQL, con)
'cmd.Parameters.AddWithValue("Parameter1", strName)
Dim reader As MySqlDataReader = cmd.ExecuteReader

and how can I handle null field values.

View 10 Replies

VS 2008 : Creating Own DataReader Like TCP Client/Server?

Jun 2, 2010

I'm not even sure where to start. I would like to create something like the ADO DataReader but that works in a TCP Client/Server scenario.Basically, in the TCP Client, I want to be able to call a certain command in the TCP Server which will return a DataReader like object, which I can then iterate through such as:

while dr.Read from the client. In each loop, I would parse out the various fields as in a normal DataReader.The reason I want to do this is to gain the inherent efficiency of the DataReader object since it doesn't first load ALL of the data. To my understanding, the typical TCP Client/Server setup using streams, would first load all of the data on the server, then transport ALL of that data to the client for processing. I want to avoid that, and just stream the data as the client requests through the Read() command which means the connection will remain open to the server while the Read() command is being issued by the client, or until explicitly closed by the client.

View 5 Replies

VS 2008 Recursion Failing With Command/DataReader Objects Already Open

Jun 26, 2009

I'm trying to put together a quick example for another thread about treeviews, and I'm getting a problem when I have a recursive routine, getting the message.

Quote:

There is already an open DataReader associated with this Command which must be closed first.

I'm a tad confused as I am explicitly creating a new command every time through the loop, so I'm not sure (unless its something ADO is doing behind the scenes) how the datareaders higher up the tree are interfering.

Here's my code :

Private Sub SetupChildren(ByVal ParentID As Integer, ByRef ParentNode As TreeNode)
Dim MyCommand As New SqlCommand("SELECT * FROM Groups WHERE ParentGroup=@ParentGroup", m_myConnection)

[Code]...

Obviously I could close the data reader down before calling the next level of recursion but it would prevent the code continuing the loop at the current level when it had finished processing children.

View 5 Replies

VS 2008 Program Works Before Loop But Not After Loop

Aug 11, 2009

I assigned an integer as 1, and looped my program using:[code]I can recieve the packets without looping, but once i loop, i receive nothing.

View 29 Replies

Evaluates Loop Condition In Do...Loop Statment To Determine Whether Loop Instructions Should Be Processed

Mar 14, 2011

Makes the following statement about the code below:

**"The computer evaluates the loop condition in the Do...Loop statment to determine whether the loop instructions should be processed. In this case, the inputsales <> String.Empty condition compares the contenst of the input sales variable to the String.Empty value. As you know the String.Empty value represents a zero length, or empty, string if the inputsales variable is empty, the loop condition evaluates to True and the computer process the loop instructions. *If on the other hand the inputsales variable is not empty, the loop condition evaluates to false and the computer skips over the loop instructions.

Based on the code I think it is the opposite: ...that while the inputsales value is not empty it should evaluate to true and process the loop and if it is empty it should evaluate to false and skip the loop?

See below.

Option Explicit On
Option Strict On

Imports System.Globalization

[CODE]...

View 2 Replies

VS 2008 VBNET2008 EXCEL 2003 - OLEDB To Retrieve EXCEL Data To DataReader?

Jan 22, 2011

I am trying to retrieve the data from EXCEL 2003 spreadsheet from row 8 onwards because from Row 1 to Row 7 the row is merged columns from A1 to K1, A2 to K2, A3 to K3, A4 to K4, A5 to K5, A6 to K6, A7 to K7.

View 28 Replies

.net - Datareader In VB And SQL?

Jun 22, 2010

i am working on a search feature for a program i am working on and i found a tutorial online that provides some insight but the actual code, after being modified to fit my aplication, does not work. i get two different errors as of right now, one that tells me "the value of type 'System.data.sqlclient.sqldatareader' cannot be converted to '1-dimensional array of system.data.sqlclient.sqldatareader" and the other that says"argument not specified for parameter 'array' of 'Public shared function... anyway i am kinda new to this and here is what i have so far. any advice?

Private Sub SearchOKButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SearchOKButton.Click

[Code]...

View 3 Replies

.net - Going Through A DataReader Twice

Mar 30, 2011

I have the following code which does what it's supposed to do:

objSQLCommand = New SqlCommand("select * from table1", objSQLConnection)

objSQLCommand.Connection.Open()
objSQLDataReader = objSQLCommand.ExecuteReader()
While objSQLDataReader.Read()

[Code]....

But I need to loop through the objSQLDataReader 1 more time. How would I do that?

View 2 Replies

Using DataReader In .NET

Jul 6, 2011

I got the error message There is an open data reader associated with this command which needs to be closed first by using the following code:

myCommand = New SqlCommand("SELECT BookCode FROM tblBook",myConnection)
myReader = myCommand.ExceuteReader
While myReader.Read

[Code]...

View 2 Replies

Add A Value Manually To DataReader ?

Jun 10, 2011

I am copying sample.csv file's content into the new.csv file. But I need to add additional column in new.csv file which holds the default value as "Yes" for each row that exists in old file. Here is the code I have written.

Dim ioFile As New System.IO.StreamReader("C:sample.csv")
Dim ioLine As String
Dim ioLines As String[code].....

The first four columns ID,Name,Number,Amount are present in sample.csv.I am adding additional column Copied which should be "Yes" for each row.

View 3 Replies

Only The First Record To Come In Datareader?

Sep 21, 2009

I am trying to tag of some words.There are 5 tag word in my database. but only the first record is coming.i want to

my codes
Public Function tags(ByVal ID As Integer) As String

[code].....

my html code in gridview <%#tags(Container.DataItem("ID"))%>

View 2 Replies

Sql - Use Datareader While Getting A Value To The Textbox?

Apr 26, 2011

Hey Friend i am using a form with a *combobox*in which the items i have taken from the
sqldatabase named as balance and that sqldatabase have two columns one is customername and the
another is obbalance now .

In the form i had binded all the customer names from the table and now i have a textbox i want to do is
when the user selects the combobox.selected item any one customer name i need to display the obbalance of the selected customer in tat textbox

[Code]...

View 2 Replies

Two DataReader In One TreeView ?

Dec 12, 2009

two DataReader in one TreeView ?


View 8 Replies

.net - Fill DataTable From DataReader Row By Row

Aug 25, 2010

i want to fill a Datatable with a Datareader row by row but get an exception because the reader's columns have a different order than the Datatable's columns.

Why and how does a Datatable loads itself with a Datareader correctly, even so it has a column collection with different order?

I need to calculate values for every row so i dont want to load the Datatable completely but row for row. It has 25 columns so i dont want to set it all manually.

There must be a chance to load/fill/add a new row from a datareader without having the same column order(reader.GetSchemaTable?).

Following is what i have but what doesnt work:

Using reader As System.Data.SqlClient.SqlDataReader = command.ExecuteReader
'next line works(configInfo.DataSource is a Datatable)but is inappropriate
configInfo.DataSource.Load(reader)

[Code].....

View 1 Replies

.net Datareader Already Open Error When Not Used Before

Jun 22, 2011

I have this sub as part of my login / logout system. When this sub is called to login users it works perfectly, but on logout it throws an error that doesn't make any sense to me.

[Code]...

This sets a nonsense email address so that when validate_session searches for a valid email/session combo in the db it trips the destruction of the sensitive session data.

The question boils down to this: Why is the error being thrown when the logout sub calls validate_session?

View 1 Replies

Any Way To Reset Or Clear DataReader?

Mar 6, 2012

Is there an easy way to reset or clear a DataReader so it can be read through more than one time? I found a Close method but not an open method.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved