Making JBuilder resolve using table keys only - this is the answer
this site
http://linux.kieser.net/jbuilder_resolver.html
gives detailed instructions on how to make your resolvers work.
including set rowid true on the key row(s) only
then set updating mode
qReso.setUpdateMode( UpdateMode.KEY_COLUMNS );
and attach your resolver to your DataSet.
It can be done on the design page. The kieser page is the *only* place
I have seen this explained. Even to ask about it on this forum got no
response except for the wrath of teamB.
I needed this because I'm converting to FireBird which seems is rather
more picky than mySQL. mySQL somehow knew where the key was without
being told. FireBird must be told in the code.
|