Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » DTP » How to provide my own Result Set Viewer
How to provide my own Result Set Viewer [message #597538] Thu, 27 May 2010 21:08 Go to next message
Jane Thalen is currently offline Jane ThalenFriend
Messages: 9
Registered: April 2010
Junior Member
Can I plug into DTP's Result Set Viewer and provide my own functionality?

Window - Preferences - Data management - SQL Development - SQL Results View Options - Result Set Viewer Options

There is a combo box where you can select a viewer. There is only one option, the default viewer.

Please can you point me to help for how to provide my own viewer.

Thanks in advance!
Re: How to provide my own Result Set Viewer [message #597545 is a reply to message #597538] Fri, 04 June 2010 20:27 Go to previous messageGo to next message
Brian Fitzpatrick is currently offline Brian FitzpatrickFriend
Messages: 500
Registered: July 2009
Senior Member
Jane Thalen wrote:
> Please can you point me to help for how to provide my own viewer.
> Thanks in advance!

Hi Jane... Brian Payton is probably the guy you need input from - he's
on vacation this week but will be back next week. I'll ask him about
this at our weekly meeting on Tuesday. Sorry I can't help more at the
moment.
--Fitz
Re: How to provide my own Result Set Viewer [message #597595 is a reply to message #597538] Thu, 24 June 2010 22:25 Go to previous message
Brian Payton is currently offline Brian PaytonFriend
Messages: 154
Registered: July 2009
Senior Member
Hi Jane,

You need to create a class that extends the
ExternalResultSetViewerProvider abstract class, and register that class
as the result set viewer provider with the system, using the
resultSetViewer extension point. Here's a template for code that would
go in the plugin.xml for your extension plugin. Let's say you wanted
to create a customized result set viewer for Derby:

<extension
point="org.eclipse.datatools.sqltools.result.ui.resultSetViewer "
id="com.ibm.datatools.data.extensions.externalResultSetViewer ">
<externalViewer
vendor="Derby"
id="Derby Result Set Viewer"
default_viewer_name="Derby Result Set Viewer"

class=" org.eclipse.datatools.enablement.apache.derby.result.DerbyRe sultSetViewerProvider "/>
</extension>

The getViewer method of your result set viewer provider class should
return a TableViewer object, which normally will be a subclass of
ExternalTableViewer. Override whatever methods you need to in both
ExternalResultSetViewerProvider and ExternalResultSetViewer to create
your customized result set viewer.

Jane Thalen wrote:
> Can I plug into DTP's Result Set Viewer and provide my own functionality?
>
> Window - Preferences - Data management - SQL Development - SQL Results
> View Options - Result Set Viewer Options
>
> There is a combo box where you can select a viewer. There is only one
> option, the default viewer.
>
> Please can you point me to help for how to provide my own viewer.
> Thanks in advance!
Previous Topic:How to provide my own Result Set Viewer
Next Topic:creating an IConnectionProfile using ConnectionProfileFactory.createConnection
Goto Forum:
  


Current Time: Thu Apr 18 23:57:18 GMT 2024

Powered by FUDForum. Page generated in 0.02058 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top