J
|
Jane 4/23/2008 |
Stefano, str = "select FieldName from TableName" Set rsTemp = server.CreateObject("ADODB.Recordset") rsTemp.open str, dbConnection dict("FieldName2") = rsTemp("FieldName") rsTemp.Close : set rsTemp = Nothing
|
A
|
akira_nagasaki 1/13/2009 |
i got this error [Oracle][ODBC][Ora]ORA-00911: invalid character |
J
|
Jane 1/13/2009 |
Hi, Response.Write "name: " & dict("EMPLOYEE_NAME") |
A
|
akira_nagasaki 1/15/2009 |
Hi, your code looks fine. Try to debug it adding following line just after your code:
|
J
|
Jane 1/15/2009 |
Try to print SQL query before and execute it in the database directly. str = "select EMPLOYEE_NAME from IFSAPP._MV_TRS_EMPLOYEE" Response.Write str |
A
|
akira_nagasaki 1/21/2009 |
it's not working. |
J
|
Jane 1/23/2009 |
Hi, |
A
|
akira_nagasaki 2/17/2009 |
Hi, to debug code execute this SQL in the database directly.
|
A
|
akira_nagasaki 2/18/2009 |
hello jane, i had debug the code and it;s still getting error. this is the error when i execute this sql into my oracle database ORA-00900:invalid SQL Statement Please note that SQL plus commands are not supported. You will need to use SQL Plus Worksheet for running SQL Plus commands or scripts do you have any idea, since i'm still with this oracle database <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=37938&image=1&table=forumreplies' class='bbc_emoticon' alt=':(' />
|