Use an ADOCommand control instead
put TADOCommand on Form,
set up connection string
put your code in the TADOCommands CommandText, set the CommandType to cmdText
and run TADOCommand1.Execute
regrds
Main Topics
Browse All TopicsHi
iam abu iam using delphi5 with sql server2000.I have written a user defined
CREATE FUNCTION FN_FINDMAX (@PKEY VARCHAR(20))
RETURNS VARCHAR(20)
AS
BEGIN
DECLARE @INTLENGTH INT
DECLARE @RETVALUE VARCHAR(20)
DECLARE @INTCOUNT INT
SET @INTLENGTH = LEN(@PKEY) + 1
SET @INTCOUNT = 1
SET @RETVALUE = @PKEY
WHILE (@INTCOUNT <> @INTLENGTH)
BEGIN
IF SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
SUBSTRING(@PKEY,@INTCOUNT,
BEGIN
SET @RETVALUE = '0'
BREAK
END
SET @INTCOUNT=@INTCOUNT+1
END
RETURN(@RETVALUE)
END
the function working fine in sql server.but when i genrate script for this function and execute in query component it is prompting me incorrect syntax near function.can anyone sujjest me how to execute the script of this function.But other table and view scripts are executing fine,I have only problem when executing user defined function script
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ziolkoPosted on 2005-12-20 at 05:53:57ID: 15518274
Do You call it that way:
Query.SQL.Add('exec FN_FINDMAX '+QuotedStr(yourparam here)) ?
ziolko.