This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hello and good morning! I am running the 10/25/11 nightly build of LightSpeed 4 on Visual Studio 2010 SP1, trying to access an Oracle 11g database, version 11.2.0.2... I was unable to connect at all until I found this post about binding redirect: http://www.mindscapehq.com/forums/thread/1590 - saved my day! Once I added the binding redirect stuff to app.config I can apparently read from the database, but I am getting the following Oracle errors:
(Sorry about the formatting, I can't seem to get the EOL to work for some reason) There is a field called ORDERS_ID (notice the underscore) that is a foreign key to the Orders table. Your auto-generated code seems to have done a great job of keeping the underscores in important places, that is, where there was a specific reference and it was not a key used in a relationship. However, in this case it seems to have mangled the name so it's unrecognizable by removing the underscore. What can I do to get around this? I can post whatever you need to help figure it out, but this pretty well stops me dead at the moment. Thanks for any help you can provide, Dave |
|
|
It sounds like your OrdersId field is being mapped to an OrdersId column instead of the desired To address this, select the Orders association and set the Column Name to |
|
|
That worked! Thanks for the help... Dave |
|