ClientDataSet1.CommandText的弱智问题(50分)

  • 主题发起人 主题发起人 KenLee
  • 开始时间 开始时间
K

KenLee

Unregistered / Unconfirmed
GUEST, unregistred user!
ClientDataSet1.Close;
Asql:='select * from tablename where skbz is null';
ClientDataSet1.CommandText := ASql;
ClientDataSet1.Open;
结果出错说“translate error. Value out of bounds”怎么搞?
 
DataSetProvider.Options的poAllowCommand是否为True;
 
1. 请用在 服务器应用程序数据模块中的TQuery.sql用你的ASql语句,是否正确.
2.ClientDataSet中的字段全部去掉.
 
因为你的表的字段与你查询的结果的字段不对应。要一致
 
接受答案了.
 
后退
顶部