-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
REF operator #92
Comments
I've just noticed that if a table contains an element of type CREATE TYPE MISSION_TYPE AS OBJECT (
CODE VARCHAR2(64),
INTITULE VARCHAR2(64),
NB_JOURS INTEGER,
INTERVENANT REF INTERVENANT_TYPE
);
CREATE TABLE MISSION
OF MISSION_TYPE (
CONSTRAINT PK_CODE PRIMARY KEY (CODE)
);
SELECT * FROM MISSION I get the same error |
What is Likely an ODPI-C limitation. |
Oracle Call Interface (OCI) supports it. Its data type code is |
@Lurgrid were you just testing REF, or do you have a business need for support? |
Yes it happened during a normal use of my program. But if that's not possible, I can at worst use the |
I can't predict when our ODPI-C or @kubo's rust-oracle will support the feature, but I have noted your vote for it. |
Hello,
When I run a query that has the operator
REF()
I get an errorError: unknown Oracle type number 0
.Exemple
Here is the doc for
REF()
https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/REF.html
The text was updated successfully, but these errors were encountered: