Product: Aqua Data Studio
Version: 12.0.0-beta-14
Build #: 29119
Build Date: 2012-Sep-05 05:58:49 PM
Operating Environment: Linux (3.2.0-29-generic, amd64) / UTF-8 / en / US / Oracle Corporation 1.7.0_06-b24
Memory: Max=3,819,634,688; Total=493,944,832; Free=341,271,760; CPUs=8
I tested FluidShell shortcut for all RDBMS versions and the only I remaining issue found was with Informix Server
1. Drag a Registered Informix Server name and create a FluidShell shortcut. Click on the Shortcut and you get Database not found or no system permission.
2. Now if I click on the Reconnect button, it connects to the correct database
With a Query Analyzer shortcut, I am able to connect and execute query with no problem
|
100 KB
If i specify a database instance for e.g ol_w2ksrv39 the query analyzer shortcut works, but the FluidShell shortcut doesnt. The query analyzer picks up the default database
For informix we can specify either Instance/Database
This problem is caused by the fact that creating a shortcut to the root node of the server will include the database registered in the SHORTCUT_PATH and it used "/" as a separator. So, the shortcut file looks like this ...
SHORTCUT_PATH=Root / Local Database Servers / Ivans_Database_Servers / Informix / informix 11.5 / Databases / ol_w2ksrv39/northwind
When you click on the shortcut, it will traverse down the path to the last node. If you put a break point on ConnectionProperties : Line 3587 you can see that it tries to change into the database "ol_w2ksrv39" which is incorrect. If you put a break point at CommandLineInterpreter : Line 296 you can see the stack call from ShortcutToolBar. If you put a break point at Shortcut : Line 162 you can see the parsing of the shortcut path. Shortcut : Line 164 seems to be the cause which was added by Larion.
This problem is caused by the fact that creating a shortcut to the root node of the server will include the database registered in the SHORTCUT_PATH and it used "/" as a separator. So, the shortcut file looks like this ...
SHORTCUT_PATH=Root / Local Database Servers / Ivans_Database_Servers / Informix / informix 11.5 / Databases / ol_w2ksrv39/northwind
When you click on the shortcut, it will traverse down the path to the last node. If you put a break point on ConnectionProperties : Line 3587 you can see that it tries to change into the database "ol_w2ksrv39" which is incorrect. If you put a break point at CommandLineInterpreter : Line 296 you can see the stack call from ShortcutToolBar. If you put a break point at Shortcut : Line 162 you can see the parsing of the shortcut path. Shortcut : Line 164 seems to be the cause which was added by Larion.
Issue #7529 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
Fixed Build 12.0.0-rc-22-5 |
No time estimate |
If i specify a database instance for e.g ol_w2ksrv39 the query analyzer shortcut works, but the FluidShell shortcut doesnt. The query analyzer picks up the default database
For informix we can specify either Instance/Database