Tagged Questions

1
vote
2answers
696 views

Configuring SQL Anywhere to read from an ASE server

I have a Sybase ASE server that I'm able to connect to with ASE iSql totally fine. The database definition in my sql.ini file looks like: [<NAME>] master=TCP,<servername>,<port> ...
0
votes
1answer
65 views

How to “hide” (return status = 0) from isql stored procedure result?

When I execute stored procedures using isql, they might give this info: (return status = 0) Is it possible to disable that info? I already use SET NOCOUNT ON to disable some part but this is still ...