Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old March 1st, 2013, 11:43 AM
nightrider43 nightrider43 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2012
Location: São Paulo - Brazil
Posts: 34 nightrider43 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 6 h 50 m 57 sec
Reputation Power: 1
Send a message via ICQ to nightrider43 Send a message via MSN to nightrider43 Send a message via Google Talk to nightrider43 Send a message via Skype to nightrider43
Erro with parameters opening ADOQuery

I'm acessing a SQL table(MS SQL Server) via the following sql statement:

SELECT * FROM LAUDOS
WHERE CDEMPGRP = @pCDEMPGRP
AND CDLAUDO = @pCDLAUDO
ORDER BY CDLAUDO

In the parameters clause of the ADOQuery the parameters are defined:

@pCDEMPGRP
Attributes - []
DataType - ftInteger
Direction - pdInput
Name - @pCDEMPGRP
NumericScale - 0
Precision - 5 (the column of the table is numeric(5) )
Size - 0
Value - (null)

@pCDLAUDO
Attributes - []
DataType - ftInteger
Direction - pdInput
Name - @pCDLAUDO
NumericScale - 0
Precision - 12 (the column of the table is numeric(12) )
Size - 0
Value - (null)

The BeforeOpen method for the ADOQuery is:

procedure TfrmConstrucaoDET.qryLaudosBeforeOpen(DataSet: TDataSet);
begin
if Empresa <> 0 then
try
qryLaudos.Parameters.ParamByName('@pCDEMPGRP').Value := Empresa;
qrylaudos.Parameters.ParamByName('@pCDLAUDO').Value := 100000;
except
On e:Exception do
begin
Dialogs.ShowMessage('Erro atribuindo parametros = ' + e.Message);
Exit;
end;
end;
end;

And it doesn't report exceptions


In the FormCreate method, the first lines of the code are:

if Empresa <> 0 then
try
qryLaudos.Open;
except
On e:Exception do
begin;
MessageDlg('Erro OPEN qryLaudos = ' + e.Message,mtError,[mbOK],0);
Abort;
end;
end;

When I execute the program i receive the message:

Erro OPEN qryLaudos = Must declare the scalar variable "@pCDEMPGRP"

Should someone of you tell me what's happen here? Where am I making a mistake, please?

Greetings from São Paulo - Brazil

Ricardo

Delphi XE 15.0.3890.34076

Last edited by nightrider43 : March 1st, 2013 at 12:20 PM.

Reply With Quote
  #2  
Old March 1st, 2013, 03:56 PM
majlumbo majlumbo is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2008
Posts: 255 majlumbo User rank is Lance Corporal (50 - 100 Reputation Level)majlumbo User rank is Lance Corporal (50 - 100 Reputation Level)majlumbo User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 3 Days 2 m 15 sec
Reputation Power: 5
Query parameters in Delphi are preceded with a : not @
Code:
SELECT * FROM LAUDOS
WHERE CDEMPGRP = :pCDEMPGRP
AND CDLAUDO = :pCDLAUDO
ORDER BY CDLAUDO

and no need to include the : in setting the parameters.

qryLaudos.Parameters.ParamByName('pCDEMPGRP').Value := Empresa;
qrylaudos.Parameters.ParamByName('pCDLAUDO').Value := 100000;

Should work

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > Erro with parameters opening ADOQuery

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap