以下是我delphi中的代码:
adoquery1.SQL.Clear;
adoquery1.SQL.Add('select * from customer_loan where(customer_id=:a and loan_pak_no=:b and card_type=:c)');
 adoquery1.Parameters[0].Value:=Edit4.Text;
 adoquery1.Parameters[1].Value:=Edit5.Text;
 adoquery1.Parameters[2].Value:=ComboBox2.Text;
 adoquery1.Open;
问题是:ComboBox2.Text的赋给adoquery1.Parameters[2].Value后,adoquery1.Parameters[2].Value的内容却是乱码,不知怎么回事??然后提示说字符串数据右截位,怎么解决这个问题呢?望大家多多指教!