Board index » delphi » Paradox questions (2)
Giovanni Filippini
![]() Delphi Developer |
Paradox questions (2)2003-10-11 07:16:02 PM delphi175 Hello to the Group I have already posted 2 questions but with no luck. ( Paradox - Delphi_6 ) Can anyone give me a point ? 1) what parameters should I set in BDE Admin to have the less of problems with accented letters (Italian) in database jobs (select,find,locate...) ? particolarly in data importing. 2) Is it allowed to change key_fields in a database Paradox ? ( & Interbase ? ) I used code like this: with Query2 do begin sql.Clear; sql.add('update sentences'); sql.add('set argument_1 = :new_argument'); sql.add('where argument_1 = :old_argument'); ParamByName('old_argument').Asstring := i_var_arg_from.text; ParamByName('new_argument').Asstring := i_var_arg_to.text; ExecSQL; end; the result was always that the records after the 16? all had their memo_field cleared. It seems that changing the key fields, the links with records in .MB file are lost. Thank you much for your time. Giovanni. |