Table Name Issue for oracle Cloud database #293
-
I am an asp dot net project which is using ef core to manage database. So I want to know it is possible to access and fetch data from tables which is this format "%%..." i.e. Employees. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I'm not sure what you mean, precisely. If the table name is cursor.execute('select * from Employees') but if the table name is cursor.execute('select * from "Employees"') If I missed the question you were trying to ask, please clarify! |
Beta Was this translation helpful? Give feedback.
I'm not sure what you mean, precisely. If the table name is
EMPLOYEES
(as shown in the database catalog) then you can issue this query without difficulties:but if the table name is
Employees
(as shown in the database catalog) then you must do this intead:If I missed the question you were trying to ask, please clarify!