![]() |
SQL Query in object Inspector
Liste der Anhänge anzeigen (Anzahl: 1)
Hi,
I am writing a simple query in delphi which is working fine
Code:
but if i write the same code ADOQuery1 in object Inspector and write the following code
ADOQuery1.Close;
ADOQuery1.SQL.Clear; ADOQuery1.SQL.Add('SELECT bezeichnung FROM artikel where artnr=:ID'); ADOQuery1.Parameters.ParamByName('ID').Value:=2; ADOQuery1.Open;
Code:
i got the following error 'ADOQuery1: Parameter'ID' not found
ADOQuery1.Close;
ADOQuery1.SQL.Clear; ADOQuery1.Parameters.ParamByName('ID').Value:=2; ADOQuery1.Open; i dont know why it is not when i write the query in object inspector , i have check database connection and the parameter name as well ,everything is ok could anybody please help me |
AW: SQL Query in object Inspector
Zitat:
|
AW: SQL Query in object Inspector
Liste der Anhänge anzeigen (Anzahl: 1)
Thanks for your reply
I have another question, for example i can insert data into two different using one ADOQuery but when i would like to update two table using one ADOQuery then i got an error "Aplication uses a value of the wrong type for the current operation"
Code:
here is the screen shot for the Query
ADOQuery3.DisableControls;
ADOQuery3.EnableControls; ADOQuery3.Parameters[0].Value:= Edit1.Text; ADOQuery3.Parameters[1].Value:=2; ADOQuery3.Parameters[2].Value:= Edit1.Text; ADOQuery3.Parameters[3].Value:=1001; ADOQuery3.ExecSQL; ADOQuery3.DisableControls; ADOQuery3.EnableControls; |
AW: SQL Query in object Inspector
You should have a closer look to SQL basics and the data controls.
Seems to me, you do not really know what you are doing ... |
AW: SQL Query in object Inspector
I whole heartedly agree. There is SO much wrong with your code, that it seems that even if we solve this one for you, you'd run into the next problem pretty much immediately after. But what the hell:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:44 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz