Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old December 20th, 2006, 07:35 PM
clayalphonso@yahoo.com
Guest
 
Posts: n/a
Default split array twice and do a multiple insert

Here is the code:

<%
dim testArray, testArray2
dim Conn, rs
dim sSQL, sConnString
'response.write request.form("sel1")
'testArray = split(request.form("sel1"),",")
'for each gidstuff In testArray
'Response.Write gidstuff & "<br />"
'next
'define the connection string, specify database
sConnString="whatever_it_is"
'create an ADO connection and recordset
Set Conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
'Open the conn
Conn.Open sConnString
testArray = split(request.form("sel1"),",")
For i = lbound(testArray) to ubound(testArray)
'second split
aSplitArray = split(testArray(i),"$")
'response.write "GID:" & aSplitArray(0) &" STOREID:" & aSplitArray(1) &
"<br>"
sSQL="insert into group_editor_log (storeid, oldgid, newgid, stamp,
eventid, valid) select '" & _
aSplitArray(1) & "', '" & aSplitArray(0) & "', '" & 1 & "', '" & date()
& "', '" & 1 & "', '" & 1 & "'"
response.write sSQL & "<br>"
Conn.execute(sSQL)
Next
response.end()
'sSQL="insert into group_editor_log (storeid, oldgid, newgid, stamp,
eventid, valid) select '" & _
'aSplitArray(1) & "', '" & aSplitArray(0) & "', '" & 1 & "', '" &
date() & "', '" & 1 & "', '" & 1 & "'"
%>

I am grabbing multiple select list items and splitting them twice,
reason for this is that I am carrying over 2 values from the select
list.

My problem is this when I am doing a multiple insert the records are
duplicated, in other words, if I select 3 it inserts 6 six, I can't
figure out how to insert the exact amount of records that are selected.

Please help!

  #2  
Old December 21st, 2006, 07:25 AM
Alan M
Guest
 
Posts: n/a
Default Re: split array twice and do a multiple insert


<clayalphonso@yahoo.comwrote in message
news:1166642871.945873.119120@80g2000cwy.googlegro ups.com...
Quote:
Here is the code:
>
<%
dim testArray, testArray2
dim Conn, rs
dim sSQL, sConnString
'response.write request.form("sel1")
'testArray = split(request.form("sel1"),",")
'for each gidstuff In testArray
'Response.Write gidstuff & "<br />"
'next
'define the connection string, specify database
sConnString="whatever_it_is"
'create an ADO connection and recordset
Set Conn = Server.CreateObject("ADODB.Connection")
Set rs = Server.CreateObject("ADODB.Recordset")
'Open the conn
Conn.Open sConnString
testArray = split(request.form("sel1"),",")
For i = lbound(testArray) to ubound(testArray)

since you have one insert for each item in your array, you must have 6 items
not 3 in your array

write it to screen and see

Quote:
'second split
aSplitArray = split(testArray(i),"$")
'response.write "GID:" & aSplitArray(0) &" STOREID:" & aSplitArray(1) &
"<br>"
sSQL="insert into group_editor_log (storeid, oldgid, newgid, stamp,
eventid, valid) select '" & _
aSplitArray(1) & "', '" & aSplitArray(0) & "', '" & 1 & "', '" & date()
& "', '" & 1 & "', '" & 1 & "'"
response.write sSQL & "<br>"
Conn.execute(sSQL)
Next
response.end()

Why is the insert repeated here?


Quote:
'sSQL="insert into group_editor_log (storeid, oldgid, newgid, stamp,
eventid, valid) select '" & _
'aSplitArray(1) & "', '" & aSplitArray(0) & "', '" & 1 & "', '" &
date() & "', '" & 1 & "', '" & 1 & "'"
%>
>
I am grabbing multiple select list items and splitting them twice,
reason for this is that I am carrying over 2 values from the select
list.
>
My problem is this when I am doing a multiple insert the records are
duplicated, in other words, if I select 3 it inserts 6 six, I can't
figure out how to insert the exact amount of records that are selected.
>
Please help!
>

 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles