Oracle and asp multiple sql statements

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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>/,...
    4. 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 ...
    5. 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...
  3. #2

    Default Re: Oracle and asp multiple sql statements

    On Fri, 11 Jun 2004 05:24:23 -0700, "Mike D" <anonymous@discussions.microsoft.com> wrote:
    >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
    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 in SqlPlus will submit a statement, but not plain Sql )

    Turkbear Guest

  4. #3

    Default 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

    >-----Original Message-----
    >On Fri, 11 Jun 2004 05:24:23 -0700, "Mike D"
    <anonymous@discussions.microsoft.com> wrote:
    >
    >>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
    >
    >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
    in SqlPlus will submit a statement, but not plain Sql )
    >
    >.
    >
    Mike D Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139