BDE Migration to UniDAC with Sybase
Hello,
I cannot reproduce the problem.
The following SQL code:
is executed in UniQUery without errors.
Please specify the error message you are getting when executing this query.
I cannot reproduce the problem.
The following SQL code:
Code: Select all
if exists(select * from test where ID = 1)
select 'A' else select 'B'
Please specify the error message you are getting when executing this query.
Hi Alex ,
Please find a sample code
create table temp123 (
cconsol int not null,
message varchar(255)
)
insert into temp123 ( cconsol, message )
values ( 1234, 'test message' )
In Tuniquery component, we have include the below query
if exists (select 1 from temp123 where cconsol= 1234)
select reviewable="Y" else select reviewable="N"
And once its executed, in the data editor we are getting the error msg
SQL Statement doesnt return rows
Please let us know what can be the issue.
When we run the query in BDE or backend we get the output as
reviewable as N
Please find a sample code
create table temp123 (
cconsol int not null,
message varchar(255)
)
insert into temp123 ( cconsol, message )
values ( 1234, 'test message' )
In Tuniquery component, we have include the below query
if exists (select 1 from temp123 where cconsol= 1234)
select reviewable="Y" else select reviewable="N"
And once its executed, in the data editor we are getting the error msg
SQL Statement doesnt return rows
Please let us know what can be the issue.
When we run the query in BDE or backend we get the output as
reviewable as N
Hi Alex,
Any update on the above issue
Also , while running the stored proc on Windows 7 Machine with Sybase 15 client , we are getting the error msg Output Parameters will only be returned from this stored procedure when you use only parameter markers to pass parameter values.
Any idea what can be the issue?
Regards
AS
Any update on the above issue
Also , while running the stored proc on Windows 7 Machine with Sybase 15 client , we are getting the error msg Output Parameters will only be returned from this stored procedure when you use only parameter markers to pass parameter values.
Any idea what can be the issue?
Regards
AS
Hello,
I cannot reproduce this problem.
I created the following procedure on the 12.5 and 15 servers:
and it was executed without errors from the client of the 15 version on win7.
Please send us the procedure script and I will try to reproduce this error once more.
I cannot reproduce this problem.
I created the following procedure on the 12.5 and 15 servers:
Code: Select all
CREATE PROCEDURE dbo.sp_test(@a_in int, @a_out int output)
AS
BEGIN
SET @a_out = @a_in+1
END
Please send us the procedure script and I will try to reproduce this error once more.
Hi Alex,
There is no variable got Result generated on Win7 with Sybase 15 for a stored proc and Sybase 12.5 used to generate a parameter called Result. Hence the issue has been resolved now and we are not getting the error.
Can you please let us know if Unidac supports Rave Reports. We need to migrate to Rave 7.7 on Delphi 10 and also with Unidac?
There is no variable got Result generated on Win7 with Sybase 15 for a stored proc and Sybase 12.5 used to generate a parameter called Result. Hence the issue has been resolved now and we are not getting the error.
Can you please let us know if Unidac supports Rave Reports. We need to migrate to Rave 7.7 on Delphi 10 and also with Unidac?