We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's say I have a Table A with composit PK. I Have another Table B that need to point on Table A using 2 local columns.
Basic SQL would be :
ALTER TABLE B ADD CONSTRAINT B_TO_A FOREIGN KEY ( FK_COL_1 , FK_COL_2 ) REFERENCES B ( PK_COL_1 , PK_COL_2 )
I'm getting error :
TDBMException : PropertyDescriptor for B.FK_COL_1 not found in A
The text was updated successfully, but these errors were encountered:
Hello,
Same problem here.
Any update on this issue ?
Thanks :)
Sorry, something went wrong.
This should be fixed in 5.1.12. Awaiting the port to the master branch to close this issue.
moufmouf
No branches or pull requests
Let's say I have a Table A with composit PK. I Have another Table B that need to point on Table A using 2 local columns.
Basic SQL would be :
I'm getting error :
The text was updated successfully, but these errors were encountered: