self.Query2.Close;
self.Query2.SQL.Clear;
self.Query2.SQL.Text:='insert into CJB(教师姓名,学时,金额) values(:教师姓名,:学时,:金额)';
self.Query2.ParamByName('教师姓名').AsString:=(self.JSXMDBLookupComboBox.Text);
self.Query1.Params[0].AsString:='李令';
self.Query1.Params[1].AsString:='100';
self.Query1.Params[2].AsString:='100';
self.Query2.Open;
错误提示!
"Project1.exe raised exception class EListError with message 'List index out of bound(1)'.Pross stopped Use Step or Run to conntinue"