I haven't touch ASP's in awhile. This code use to work when the database was in Oracle 8. Now that were on a different version of Oracle, 10g I think, I'm guessing that the (+) seen below needs to be written a different way to view the details of an old legacy database.
I also had to change the connect statement to establish a connection also. When I did, I was able to connect, but ran into this problem.
Should the (+) be written differently? Tried a google search but you can't search "(+)" and oracle since it doesn't really search for "(+)" in the search.
SQLA = "SELECT *"
SQLA = SQLA & " FROM EVENTS_VW, LOCATION_BLOCKS"
SQLA = SQLA & " WHERE INCD_EVENT_NUM = '" & eventnum & "' AND"
SQLA = SQLA & " EVENTS_VW.BLOCK_ID = LOCATION_BLOCKS.BLOCK_ID(+)"
set rs2 = my_conn.Execute(SQLA)
I also had to change the connect statement to establish a connection also. When I did, I was able to connect, but ran into this problem.
Should the (+) be written differently? Tried a google search but you can't search "(+)" and oracle since it doesn't really search for "(+)" in the search.
SQLA = "SELECT *"
SQLA = SQLA & " FROM EVENTS_VW, LOCATION_BLOCKS"
SQLA = SQLA & " WHERE INCD_EVENT_NUM = '" & eventnum & "' AND"
SQLA = SQLA & " EVENTS_VW.BLOCK_ID = LOCATION_BLOCKS.BLOCK_ID(+)"
set rs2 = my_conn.Execute(SQLA)