Ask a Question related to ASP Database, Design and Development.
-
Mike D #1
Oracle and asp multiple sql statements
I have a connection between asp and oracle. I have tried
the OLE DB connection from both MS and oracle.
I can connect and do 1 insert statement but how do I do 2?
Insert Into () values ();Insert Into () Values
gives me an "ORA-00911: invalid character" error. How do
I seperate the statements or will I have to hit the db
twice:-(
Thanks
Mike
Mike D Guest
-
MySQL Queries with multiple statements
I'm trying to include multiple statement in a MySQL query. MySQL seems to need to have a linefeed between the statements to work correctly but no... -
I need help with a query using multiple join statements
I have an MS Access DB that I am querying and am having problems with the JOIN statement. I have 3 tables: Committees - which has a list of... -
Multiple gsub statements in one line possible?
All- For the string called pkg_bug_base, I'm currently using the following code to make some substitutions: pkg_bug_base.gsub!(/<sp_num>/,... -
help with multiple BETWEEN statements
Can someone provide an assist with compound BETWEEN syntax? I want to enforce the following: SELECT A from table1 where rate = 'abc' and ... -
Multiple oracle in same machine
Hi all I'm having 20 Oracle servers ( ranging from Oracle 7.0.1 to Oracle 9i) which are running on 20 separate machines. 27 applications are... -
Turkbear #2
Re: Oracle and asp multiple sql statements
On Fri, 11 Jun 2004 05:24:23 -0700, "Mike D" <anonymous@discussions.microsoft.com> wrote:
Separate the statements and send them separately..>I have a connection between asp and oracle. I have tried
>the OLE DB connection from both MS and oracle.
>
>I can connect and do 1 insert statement but how do I do 2?
>
>Insert Into () values ();Insert Into () Values
>
>gives me an "ORA-00911: invalid character" error. How do
>I seperate the statements or will I have to hit the db
>twice:-(
>
>Thanks
>Mike
Sql1 = "Insert Into () values ()"
Sql2 = "Insert Into () values ()"
yourconn.Execute(Sql1)
yourconn.Execute(Sql2)
Same connection, just 2 statements....( the ' ; ' , when in SqlPlus will submit a statement, but not plain Sql )
Turkbear Guest
-
Mike D #3
Re: Oracle and asp multiple sql statements
Thanks for the reply. I have been working on learning
this stuff. Thanks for posting the links in your last
reply to me. I finally have my first sp running from asp
so the multi-insert may not be necessary:-)
Thanks again
Mike
<anonymous@discussions.microsoft.com> wrote:>-----Original Message-----
>On Fri, 11 Jun 2004 05:24:23 -0700, "Mike D"tried>>>I have a connection between asp and oracle. I have2?>>the OLE DB connection from both MS and oracle.
>>
>>I can connect and do 1 insert statement but how do I dodo>>
>>Insert Into () values ();Insert Into () Values
>>
>>gives me an "ORA-00911: invalid character" error. Howin SqlPlus will submit a statement, but not plain Sql )>>>I seperate the statements or will I have to hit the db
>>twice:-(
>>
>>Thanks
>>Mike
>Separate the statements and send them separately..
>
>Sql1 = "Insert Into () values ()"
>Sql2 = "Insert Into () values ()"
>
>yourconn.Execute(Sql1)
>yourconn.Execute(Sql2)
>
>Same connection, just 2 statements....( the ' ; ' , when>
>.
>Mike D Guest



Reply With Quote

