Question: How to dynamic refresh Params of uniStoredProc !

Discussion of open issues, suggestions and bugs regarding UniDAC (Universal Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
hlbzhx
Posts: 19
Joined: Tue 03 Nov 2009 03:29

Question: How to dynamic refresh Params of uniStoredProc !

Post by hlbzhx » Wed 04 Nov 2009 11:04

How to dynamic refresh Params of uniStoredProc !

Sample:
adoStoredProc1.Parameters.Refresh;

uniStoredProc is not supply this method..

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Thu 05 Nov 2009 08:57

You can use the following code:

Code: Select all

  UniStoredProc.SQL.Clear;
  UniStoredProc.PrepareSQL;

Post Reply