473,386 Members | 1,668 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

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

Hi,

i get the error:
"There is already an open DataReader associated with this Command which must
be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
....
....
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------
Mar 27 '07 #1
13 3385
Create another command object for running the insert:

sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must
be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------


Mar 27 '07 #2
Hi, thansk for replying

I did this:

sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

For j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
Next
dtreader.Close()

but still same error at line: comd1.ExecuteNonQuery()
"Eliyahu Goldin" <RE**************************@mMvVpPsS.orgschree f in
bericht news:OB*************@TK2MSFTNGP02.phx.gbl...
Create another command object for running the insert:

sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin

Mar 27 '07 #3
You need to re-structure the code to close the first datareader before
starting using another one on the same connection. Only one request can be
served at the time and untill the first reader closes it won't let anyone
else to run.

--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"Bart" <b@sdq.dcwrote in message
news:Og**************@TK2MSFTNGP02.phx.gbl...
Hi, thansk for replying

I did this:

sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

For j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
Next
dtreader.Close()

but still same error at line: comd1.ExecuteNonQuery()
"Eliyahu Goldin" <RE**************************@mMvVpPsS.orgschree f in
bericht news:OB*************@TK2MSFTNGP02.phx.gbl...
Create another command object for running the insert:

sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin



Mar 27 '07 #4
Bart wrote:
Hi,

i get the error:
"There is already an open DataReader associated with this Command which must
be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------

You can't use the connection for running queries while it's used by the
data reader.

Why don't you do this in a single query?

"insert into mytable (field1) select pcnt from pc where lokl='" & w & "';"

--
Göran Andersson
_____
http://www.guffa.com
Mar 27 '07 #5
Not sure why you want to loop to do this, as this can all be done on the SQL
side, with a temp table, unless you are persisting the answers for a long
time. Even with a permanent table, you can clear the table before rerunning
this operation. If you need to know which number the record is, you can use
an IDENTITY field, in SQL Server (have to work from DUAL in Oracle) or
autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all records
at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------

Mar 27 '07 #6
Good morning Bart,

You used the same connection for more than one data readers and I guess
you're not using MARS - Multiple Active Result Sets (which is supported by
SQL Server 2005 only), therefore, once reader is executed, connection is
assigned to it exclusively - to release the connection, you have to close
connection or reader. In addition to that, there is not point to make things
complex and inefficient (shooting database many times in the loop as you’ve
presented in the posted code snipped). It’s very easy to build the query that
does exactly the same thing, but in one roundtrip:

sql = "INSERT INTO mytable (field1) SELECT pcnr FROM pc WHERE lokl = @lokl"

comd = new SqlCommand(sql, oConnection)
comd.Parameters.Add("@lokl", SqlDbType.NVarChar).Value = w

try
oConnection.Open()
comd.ExecuteNonQuery();
catch ex as Exception
throw ex
finally
oConnection.Close()
end try

Done. Hope this helps
--
Milosz
"Bart" wrote:
Hi, thansk for replying

I did this:

sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

For j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
Next
dtreader.Close()

but still same error at line: comd1.ExecuteNonQuery()
"Eliyahu Goldin" <RE**************************@mMvVpPsS.orgschree f in
bericht news:OB*************@TK2MSFTNGP02.phx.gbl...
Create another command object for running the insert:

sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd1 = New SqlCommand(sql, oConnection)
comd1.ExecuteNonQuery()
--
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin



Mar 28 '07 #7
Thanks to all ...

But in fact, it's not so simple, because there are other parameters needed.
What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol] ,
[dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and field
uur is int

....
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMschreef in
bericht news:FB**********************************@microsof t.com...
Not sure why you want to loop to do this, as this can all be done on the
SQL side, with a temp table, unless you are persisting the answers for a
long time. Even with a permanent table, you can clear the table before
rerunning this operation. If you need to know which number the record is,
you can use an IDENTITY field, in SQL Server (have to work from DUAL in
Oracle) or autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
>Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------


Mar 28 '07 #8
Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
Thanks to all ...

But in fact, it's not so simple, because there are other parameters needed.
What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol] ,
[dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and field
uur is int

...
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMschreef in
bericht news:FB**********************************@microsof t.com...
>Not sure why you want to loop to do this, as this can all be done on the
SQL side, with a temp table, unless you are persisting the answers for a
long time. Even with a permanent table, you can clear the table before
rerunning this operation. If you need to know which number the record is,
you can use an IDENTITY field, in SQL Server (have to work from DUAL in
Oracle) or autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
>>Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------



--
Göran Andersson
_____
http://www.guffa.com
Mar 28 '07 #9
Yes, that's it
thanks

"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eZ**************@TK2MSFTNGP02.phx.gbl...
Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
>Thanks to all ...

But in fact, it's not so simple, because there are other parameters
needed. What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol] ,
[dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and
field uur is int

...
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMschreef
in bericht news:FB**********************************@microsof t.com...
>>Not sure why you want to loop to do this, as this can all be done on the
SQL side, with a temp table, unless you are persisting the answers for a
long time. Even with a permanent table, you can clear the table before
rerunning this operation. If you need to know which number the record
is, you can use an IDENTITY field, in SQL Server (have to work from DUAL
in Oracle) or autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------




--
Göran Andersson
_____
http://www.guffa.com

Mar 28 '07 #10
Goran,

would it be possible to do this::

sql = "INSERT INTO studres ( uur, pcnr) SELECT uur from uur where range='"
& v & "', pcnr FROM pc where naam='" & w & "';"

Thanks

"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eZ**************@TK2MSFTNGP02.phx.gbl...
Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
>Thanks to all ...

But in fact, it's not so simple, because there are other parameters
needed. What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol] ,
[dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and
field uur is int

...
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMschreef
in bericht news:FB**********************************@microsof t.com...
>>Not sure why you want to loop to do this, as this can all be done on the
SQL side, with a temp table, unless you are persisting the answers for a
long time. Even with a permanent table, you can clear the table before
rerunning this operation. If you need to know which number the record
is, you can use an IDENTITY field, in SQL Server (have to work from DUAL
in Oracle) or autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
Hi,

i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"

Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar

sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader

for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next

dtreader.Close()
---------------------------------------------------------------




--
Göran Andersson
_____
http://www.guffa.com

Mar 28 '07 #11
Join the tables:

insert into studres (uur, pcnr)
select uur.uur, pc.pcnr
from uur
inner join pc on pc.naam = @w
where uur.range = @v
Bart wrote:
Goran,

would it be possible to do this::

sql = "INSERT INTO studres ( uur, pcnr) SELECT uur from uur where range='"
& v & "', pcnr FROM pc where naam='" & w & "';"

Thanks

"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eZ**************@TK2MSFTNGP02.phx.gbl...
>Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
>>Thanks to all ...

But in fact, it's not so simple, because there are other parameters
needed. What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol] ,
[dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and
field uur is int

...
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamMschreef
in bericht news:FB**********************************@microsof t.com...
Not sure why you want to loop to do this, as this can all be done on the
SQL side, with a temp table, unless you are persisting the answers for a
long time. Even with a permanent table, you can clear the table before
rerunning this operation. If you need to know which number the record
is, you can use an IDENTITY field, in SQL Server (have to work from DUAL
in Oracle) or autonumber in Access.

This is the proc in SQL Server:

CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS

INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w

SELECT @@COUNT

You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.

1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed

Very effficient and much easier to manage.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*********************************************
Think outside the box!
*********************************************
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl...
Hi,
>
i get the error:
"There is already an open DataReader associated with this Command which
must be closed first"
>
Thanks
Bart
-----------------------------------------
Imports System.Data.sqlclient
Imports System.Data
...
...
sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
recpc = comd.ExecuteScalar
>
sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
dtreader = comd.ExecuteReader
>
for j = 1 To recpc
dtreader.Read()
ww = dtreader.GetValue(0)
sql = "INSERT INTO mytable (field1 values(" & ww & ")"
comd.ExecuteNonQuery()
Next
>
dtreader.Close()
---------------------------------------------------------------
>

--
Göran Andersson
_____
http://www.guffa.com
Mar 28 '07 #12
thanks,
I tried something else and it works too::

sql = "INSERT INTO studres (logon, dag, type, uur, pcnr) SELECT @lol , @dag,
'l', uur.uur, pc.pcnr FROM uur, pc WHERE pc.naam=@pcna AND uur.range= @uur;"


"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eU**************@TK2MSFTNGP04.phx.gbl...
Join the tables:

insert into studres (uur, pcnr)
select uur.uur, pc.pcnr
from uur
inner join pc on pc.naam = @w
where uur.range = @v
Bart wrote:
>Goran,

would it be possible to do this::

sql = "INSERT INTO studres ( uur, pcnr) SELECT uur from uur where
range='" & v & "', pcnr FROM pc where naam='" & w & "';"

Thanks

"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eZ**************@TK2MSFTNGP02.phx.gbl...
>>Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
Thanks to all ...

But in fact, it's not so simple, because there are other parameters
needed. What i try to do is:

sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol]
, [dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()

but this gives the error:"Incorrect syntax near 'nvarchar'.

In sql server, field login is nvarchar(25), field dag is Datetime and
field uur is int

...
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM>
schreef in bericht
news:FB**********************************@micro soft.com...
Not sure why you want to loop to do this, as this can all be done on
the SQL side, with a temp table, unless you are persisting the answers
for a long time. Even with a permanent table, you can clear the table
before rerunning this operation. If you need to know which number the
record is, you can use an IDENTITY field, in SQL Server (have to work
from DUAL in Oracle) or autonumber in Access.
>
This is the proc in SQL Server:
>
CREATE PROCEDURE TestProc
(
@w int -- Not sure of type here
)
AS
>
INSERT INTO MyTable (pcnr)
SELECT pcnr FROM pc
WHERE lokl = @w
>
SELECT @@COUNT
>
You now can use the return value for count and run the insert on all
records at the same time. The syntax is much easier.
>
1. Set up connection
2. Set up command
3. Set command as CommandType.StoredProcedure
4. Run ExecuteScalar on Command and retrieve count of records changed
>
Very effficient and much easier to manage.
>
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
>
******************************************** *
Think outside the box!
******************************************** *
"Bart" <b@sdq.dcwrote in message
news:uk**************@TK2MSFTNGP02.phx.gbl.. .
>Hi,
>>
>i get the error:
>"There is already an open DataReader associated with this Command
>which must be closed first"
>>
>Thanks
>Bart
>-----------------------------------------
>Imports System.Data.sqlclient
>Imports System.Data
>...
>...
>sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
>comd = New SqlCommand(sql, oConnection)
>recpc = comd.ExecuteScalar
>>
>sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
>comd = New SqlCommand(sql, oConnection)
>dtreader = comd.ExecuteReader
>>
>for j = 1 To recpc
>dtreader.Read()
>ww = dtreader.GetValue(0)
>sql = "INSERT INTO mytable (field1 values(" & ww & ")"
>comd.ExecuteNonQuery()
>Next
>>
>dtreader.Close()
>---------------------------------------------------------------
>>


--
Göran Andersson
_____
http://www.guffa.com

Mar 28 '07 #13
Yes, that's how you would write a join before the join keyword was
introduced.

Bart wrote:
thanks,
I tried something else and it works too::

sql = "INSERT INTO studres (logon, dag, type, uur, pcnr) SELECT @lol , @dag,
'l', uur.uur, pc.pcnr FROM uur, pc WHERE pc.naam=@pcna AND uur.range= @uur;"


"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eU**************@TK2MSFTNGP04.phx.gbl...
>Join the tables:

insert into studres (uur, pcnr)
select uur.uur, pc.pcnr
from uur
inner join pc on pc.naam = @w
where uur.range = @v
Bart wrote:
>>Goran,

would it be possible to do this::

sql = "INSERT INTO studres ( uur, pcnr) SELECT uur from uur where
range='" & v & "', pcnr FROM pc where naam='" & w & "';"

Thanks

"Göran Andersson" <gu***@guffa.comschreef in bericht
news:eZ**************@TK2MSFTNGP02.phx.gbl...
Specify the data type for the parameters.
Example:

comd.Parameters.Add("@lol", SqlDbType.NVarChar. 25).Value = lol

Parameters are named using @. Square brackets are used to specify that a
string is a name. It's used for names with non-alphanumeric characters,
like [current-price], or names that are keywords, like [from].

Bart wrote:
Thanks to all ...
>
But in fact, it's not so simple, because there are other parameters
needed. What i try to do is:
>
sql = "INSERT INTO studres (logon, dag, uur, type, pcnr) SELECT [lol]
, [dag], [uur],'l', pcnr FROM pc where lokl='" & w & "';"
comd = New SqlCommand(sql, oConnection)
comd.Parameters.AddWithValue("[lol]", lol)
comd.Parameters.AddWithValue("[dag]", tda)
comd.Parameters.AddWithValue("[uur]", vv)
comd.ExecuteNonQuery()
>
but this gives the error:"Incorrect syntax near 'nvarchar'.
>
In sql server, field login is nvarchar(25), field dag is Datetime and
field uur is int
>
...
>
>
"Cowboy (Gregory A. Beamer)" <No************@comcast.netNoSpamM>
schreef in bericht
news:FB**********************************@micr osoft.com...
>Not sure why you want to loop to do this, as this can all be done on
>the SQL side, with a temp table, unless you are persisting the answers
>for a long time. Even with a permanent table, you can clear the table
>before rerunning this operation. If you need to know which number the
>record is, you can use an IDENTITY field, in SQL Server (have to work
>from DUAL in Oracle) or autonumber in Access.
>>
>This is the proc in SQL Server:
>>
>CREATE PROCEDURE TestProc
>(
> @w int -- Not sure of type here
>)
>AS
>>
>INSERT INTO MyTable (pcnr)
>SELECT pcnr FROM pc
>WHERE lokl = @w
>>
>SELECT @@COUNT
>>
>You now can use the return value for count and run the insert on all
>records at the same time. The syntax is much easier.
>>
>1. Set up connection
>2. Set up command
>3. Set command as CommandType.StoredProcedure
>4. Run ExecuteScalar on Command and retrieve count of records changed
>>
>Very effficient and much easier to manage.
>>
>--
>Gregory A. Beamer
>MVP; MCP: +I, SE, SD, DBA
>>
>******************************************* **
>Think outside the box!
>******************************************* **
>"Bart" <b@sdq.dcwrote in message
>news:uk**************@TK2MSFTNGP02.phx.gbl. ..
>>Hi,
>>>
>>i get the error:
>>"There is already an open DataReader associated with this Command
>>which must be closed first"
>>>
>>Thanks
>>Bart
>>-----------------------------------------
>>Imports System.Data.sqlclient
>>Imports System.Data
>>...
>>...
>>sql = "SELECT count(*) FROM pc where lokl='" & w & "';"
>>comd = New SqlCommand(sql, oConnection)
>>recpc = comd.ExecuteScalar
>>>
>>sql = "SELECT pcnr FROM pc where lokl='" & w & "';"
>>comd = New SqlCommand(sql, oConnection)
>>dtreader = comd.ExecuteReader
>>>
>>for j = 1 To recpc
>>dtreader.Read()
>>ww = dtreader.GetValue(0)
>>sql = "INSERT INTO mytable (field1 values(" & ww & ")"
>>comd.ExecuteNonQuery()
>>Next
>>>
>>dtreader.Close()
>>---------------------------------------------------------------
>>>

--
Göran Andersson
_____
http://www.guffa.com
--
Göran Andersson
_____
http://www.guffa.com
Mar 28 '07 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
by: fniles | last post by:
I am using VB.NET 2003, SQL 2000, and SqlDataReader. As I read data from tblA, I want to populate tblB. I use SQLDataReader for both tables. I do not use thread. When I ExecuteReader on tblB, I...
10
by: jimmy | last post by:
Hi again, sorry for posting two questions so close together but im working on a school project which is due in soon and running into some difficulties implementing the database parts. I have the...
13
by: Bart | last post by:
Hi, i get the error: "There is already an open DataReader associated with this Command which must be closed first" Thanks Bart ----------------------------------------- Imports...
3
by: BLUE | last post by:
I've a TransactionScope in which I select some data and I want to do some queries for each record retrieved with my select. I'm using a DataReader and for each record I do factory.CreateCommand()...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.