- This topic has 2 replies, 2 voices, and was last updated 5 years, 7 months ago by .
Viewing 2 reply threads
Viewing 2 reply threads
- You must be logged in to reply to this topic.
Kim,
Sorry to bombard you with requests. It appears Delphi still has 255 character limitation on string constants. When a table has several indexes for example multiple foreign keys, the kbmMW_Table attribute string easily exceeds 255 characters. Is it possible to separate index definitions into separate attributes or maybe you can provide some other solution to this problem.
Thanks in advance,
Alex.
Hi,
You can split up the string in multiple strings:
[kbmMW_Table(‘part1’+
‘part2’…)]
Thanks! It worked and it now looks much clearer.