oracle-objects-ole

How to execute multiple Oracle sql queries from VBscript?

人盡茶涼 提交于 2020-03-27 08:12:14
问题 I have a database object called objdb. From this object it seems that I can only execute one sql query at a time. if I insert a semi-colon in the end,it gives me a ORA-0911 invalid character error. For example, if I run objdb.executeSQl("select * from table1; select * from table2") This gives me a error. How can I run multiple queries from a single ExecuteSQl method ? 来源: https://stackoverflow.com/questions/40798206/how-to-execute-multiple-oracle-sql-queries-from-vbscript