Parâmetro

Delphi

26/05/2003

Como passo um parâmetro do tipo inteiro em tempo de execução???

OBS:
- tentei:
query.close;
query.ParamByName(´param´).Value := ´ftInteger´;
query.open;
, ..., e não deu certo!!!


D4rk Schn31d3r

D4rk Schn31d3r

Curtidas 0

Respostas

Fer

Fer

26/05/2003

o q q é ftinteger?? Se for uma variávl, tente

query.ParamByName(´param´).asinteger := ftInteger;

falow


GOSTEI 0
Marcelo.c

Marcelo.c

26/05/2003

Se eu entendi bem o que você quer use:

query.ParamByName(´param´).DataType := ftInteger;


GOSTEI 0
POSTAR