too much short - ResyncCommand

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

\I must set up a very long string in the ResyncCommand property.
Unfortunately there is a limit of in this property. How much is the limit?
How can be exceeded the limit?

Someone has suggestions for me? Thanks in advance for who solve this problem.

Michela
 
To my knowledge, the only way of exceeding the limit would be to rewrite
your resync query as a stored procedure with parameters (parameter(s) that
must represent the value of the primary key, single or multiple fields, for
the current record) and use the name of this stored procedure instead.

However, it's not in all case that we can rewrite the queries this way
because of the limitation for the parameters that must represent the primary
key.

Maybe you could try using named parameters instead of "?" as the place
holders but I never tried it personally.
 
Back
Top