| View previous topic :: View next topic |
| Author |
Message |
Ernst von BertHäuser Guest
|
Posted: Fri Nov 21, 2003 10:32 am Post subject: parameters |
|
|
Hi folks:
how can I make to put null values to parameters of a SQLDataSet?
I proved with this option:
SQLDataSet1.ParamByName('SOMETHING').Bound := True;
SQLDataSet1.ParamByName('SOMETHING').Clear;
but it didn't work.
are they happened some idea?
TIA
Ernst
|
|
| Back to top |
|
 |
Ricardo Guest
|
Posted: Mon Nov 24, 2003 10:23 am Post subject: Re: parameters |
|
|
Try it
SQLDataSet1.ParamByName('SOMETHING').Clear;
SQLDataSet1.ParamByName('SOMETHING').Bound := True;
"Ernst von BertHäuser" <ezicart (AT) arnet (DOT) com.ar> escreveu na mensagem
news:3fbde91e (AT) newsgroups (DOT) borland.com...
| Quote: | Hi folks:
how can I make to put null values to parameters of a
SQLDataSet?
I proved with this option:
SQLDataSet1.ParamByName('SOMETHING').Bound := True;
SQLDataSet1.ParamByName('SOMETHING').Clear;
but it didn't work.
are they happened some idea?
TIA
Ernst
|
|
|
| Back to top |
|
 |
|