This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 188302 - Add mouse over 'name' to each SQL Result Tab
Summary: Add mouse over 'name' to each SQL Result Tab
Status: RESOLVED FIXED
Alias: None
Product: db
Classification: Unclassified
Component: SQL Editor (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 normal (vote)
Assignee: Jaroslav Havlin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-07-02 07:22 UTC by tomzi
Modified: 2013-03-02 01:51 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description tomzi 2010-07-02 07:22:55 UTC
If I execute a bunch of select statements in a batch eg:

select * from User.Table1;
select * from User.Table2;
select * from User.Table3;
select * from User.Table4;
select * from User.Table5;
select * from User.Table6;
select * from User.Table7;
select * from User.Table8;
select * from User.Table9;

nb will open the results in 9 tabbed views. So far so good. However there is no way I can differentiate between the 9 tabs any more because all I can see is the title 'select * from User.Ta' in each tab.

So please add a mouse over effect to each tab so I can see the complete statement.
Comment 1 tomzi 2013-03-01 10:36:27 UTC
Is there any chance to implement this? 

Currently it is just not possible to distinguish the different Tabs in the SQL Editor, especially with longer queries
Comment 2 Jaroslav Havlin 2013-03-01 13:54:21 UTC
http://hg.netbeans.org/core-main/rev/0b7bc77e489a
Fixed.

Tooltip text length limit is still applied, because very long strings can cause performance or out-of-memory problems, and they are not very practical anyway.
The limit is 128 characters. It should be OK, I hope.

Thank you for reporting.
Comment 3 Quality Engineering 2013-03-02 01:51:55 UTC
Integrated into 'main-golden', will be available in build *201303012300* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)
Changeset: http://hg.netbeans.org/main-golden/rev/0b7bc77e489a
User: Jaroslav Havlin <jhavlin@netbeans.org>
Log: #188302: Add mouse over 'name' to each SQL Result Tab