Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我尝试设置活动属性 tue 时,都会出现功能错误。我想将网格与采用一个参数的存储过程绑定。
如果我通过 TQuery 来做,我该如何指定字段。我正在使用 wwDBGrid。
MessageMembershipSelectQuery.Params[0].AsString := custQuery.FieldByName('cust_code').AsString; MessageMembershipSelectQuery.Active := True;
请指导
用 StoredProc 组件替换您的 Query 组件。另外,检查您的参数数据类型。如果它确实是一个字符串参数,那么可以使用AsString,但如果参数具有不同的数据类型,Integer例如 ,那么您应该通过使用例如 来分配它的值AsInteger。
AsString
Integer
AsInteger