SQL Developer 1.5 - how to get stuff to develop extensions

Sorry all,
I'm sure this has been covered before but I can't find it:
I'd like to write an extension or two for SQL Developer 1.5, but I can't get things off the ground using JDeveloper 11g preview 3. The stumbliung block seems to be getting the ESDK - apparently it should be available as an update, but it's simply not there. Other things are - just not the ESDK. As far as I can tell, I can't go back to JDeveloper 10.1.3 because SQL Developer 1.5 is based on the newer architecture of the 11g releases.
Can anyone help me out? I'm planning to knock one up for a demo in two week's time to other developers I work with in an attempt to get them to do the same - we use SQL Developer all the time, and there are lots of things we'd like to try out.
I could go down the JDeveloper 10.1.3/SQL Developer 1.2 route, but we're in love with 1.5 now...
Thanks,
John

Kris,
I'd love to, but I can't find your address. I'm jconner at domain ssp-uk.com if you want to mail me direct - any SQL Developer examples you've got would be really helpful.
I've solved my initial problem, though - I've just got hold of JDeveloper 11g preview 4 (only had 3 before), and the ESDK is now available to download. So I can now actually start to have a bash at writing an extension.
John

Similar Messages

  • How to get started on Developer Server

    Hi
    Could you show me how to get started with developer server 6? How can I deploy an existing form to the web? Where can I read more information on this topic? Thank you.

    hi,
    It is avialble in the below URL:
    http://technet.oracle.com/docs/products/developer/doc_index.htm
    read it and try it
    null

  • How to get start to develop Oracle database applications with NetBeans?

    Dear Ladies and gentlemen,
    I am new to NetBeans. And I know nothing about Oracle. I have installed the
    NetBeans 6.8, and I want to learn Oracle database application development
    with NetBeans. I don't know how to get start. Give me some suggestions,
    please. Thank you very much.
    Best Regards
    Ma Xiaoguang

    Download Oracle Express Edition for educational purposes and start from there.
    Download at:
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    Documentation at:
    http://www.oracle.com/pls/xe102/homepage

  • How to get a quiz developed with a timer in Adobe captivate 8

    I want to develop a quiz with 10 questions. So those who answer max correct answers with less time should be announced as winner
    Current version 8 doesn’t show the option to publish file into exe.
    Also I have few issues with the current package I prepared.
    Not sure how to get the timer
    enabled in the package.
    Need to add logo on all slides
    3. How to add hyperlink
    for Adobe Registration.
       Some experts please help me

    Well, first, I believe if you update CP8 to the latest version:
    Adobe Captivate Help | Adobe Captivate 8 patch
    Then the .exe option is restored to Captivate.
    But that probably won't help your other request.
    For Captivate itself to know if someone's score is best, it has to know what all the other users' scores are.
    How will it find that out? (especially as an .exe which is going to likely have even a harder time getting info from the web)
    The best way to do what you want is to use an LMS with that 'leaderboard' feature (i.e ExpertusOne)...so it can evaluate everyone's recorded scores and show the best.
    And even that would probably need a hack as I *assume* it basis 'best' on the score, not on the time.
    So even if you could do a timer in Captivate, it has no way of knowing other users' scores nor a way to evaluate which is 'best' even if it did.
    (you might be able to work that all in with extensive JS hacking?)
    Fortunately, the logo is pretty easy - put the logo image on the master slide(s) you use in the piece.
    What sort of Adobe Registration do you mean?

  • How to get RoboHelp Skin Development Kit ?

    Hello Everyone,
    I am new to Robo Help. I have instaled trial version of RoboHelp 8. I want to design / customise my own Flash Skins. On going through HTML Help Documents, I learnt that it can be done through "RoboHelp Skin Development Kit", which gets installed during installation of ROBO Help. But I am unable to locate it in the Program Files and also in Adobe RoboHelp 8 folders. Can anyone help me out in that case for getting "RoboHelp Skin Development Kit" ?
    OR is there any link from where I can download it ?? Please suggest..
    Thanks,
    - Ravi

    Hi there
    I was just perusing the RoboHelp folder and I see that it would appear the FlashHelp SDK isn't present among RoboHelp 8 files.
    I've zipped up the files from RoboHelp 7 and uploaded to the link below:
    Click here
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • How to get stuff off of iphone that is no longer in service

    My iphone stopped working so I was forced to get a new one, because it was not working I was unable to upload things from my icloud to my computer. I am not sure exactly how much of my stuff is on my icloud but I qould like to get whatever is there plus my music onto my computer. Is it possible to do this even though the phone is no longer in service
    Thank you in advance

    Restore you new iPhone to the backup of your old one, then sync with iTunes to transfer your music and other iTunes media to your phone.  (See http://support.apple.com/kb/ht2109.)

  • Tricky SQL query... how to get all data in a single query?

    create table employee_definition (def_id number, def_name varchar(50));
    insert into employee_definition values (100, 'EMAIL');
    insert into employee_definition values (200, 'MOBILE_PHONE');
    insert into employee_definition values (300, 'HOME_PHONE');
    SQL> select * from employee_definition;
        DEF_ID DEF_NAME
           100 EMAIL
           200 MOBILE_PHONE
           300 HOME_PHONE
    create table employee_data (def_id number, def_value varchar(20), emp_id number);
    insert into employee_data values (100, '[email protected]', 123);
    insert into employee_data values (200, '01232222', 123);
    insert into employee_data values (300, '5555', 123);
    insert into employee_data values (100, '[email protected]', 666);
    insert into employee_data values (200, '888', 666);
    insert into employee_data values (300, '999', 666);
    insert into employee_data values (300, '444', 777);
    SQL> select * from employee_data;
        DEF_ID DEF_VALUE                EMP_ID
           100 [email protected]              123
           200 01232222                    123
           300 5555                        123
           100 [email protected]              666
           200 888                         666
           300 999                         666
           300 999                         777
    7 rows selected.I'm supposed to create a SQL that will return me the email, mobile_phone, and home_phone for a set of employees. The result will be something like this:
    EMPLOYEE ID | HOME_PHONE | MOBILE_PHONE | EMAIL
    123         |  5555  |    01232222      | [email protected]
    666         |  999  |    888      | [email protected]
    777         |  444  |    null     | nullThe thing I'm finding difficulty here is that the same column is used to store different values, based on the value in employee_definition table (something like a key/value pair). If I do:
    SQL> select emp_id, def_value as email from employee_data, employee_definition
      2  where employee_data.def_id = employee_definition.def_id
      3  and employee_definition.def_name = 'EMAIL';
        EMP_ID EMAIL
           123 [email protected]
           666 [email protected]'s partially ok.. I'm just getting the definition for 'EMAIL'. But how can I get all the values in a single query, knowing that the column stores different values based on def_name?

    Oh no, not again.
    Entity attribute models always seem like a great idea to people who have been in the profession for five minutes and lack any kind of fundamental knowledge.
    It staggers me that someone with 2,345 posts still believes "you need a 'detail table' for [storing multiple telephone numbers]"
    "A person can have multiple telephone numbers" is not an excuse to build a tired person_attribute table. Niether is the bizarre proposal by someone with over 4k posts who should know better in an earlier post that EAV models are necessary to support temporal fidelity.
    Taken to it's logical conclusion, EAV modelling leads to just two application tables. THINGS and THING_ATTRIBUTES. And when you consider that a THING_ATTRIBUTE is also a THING, why not roll those two tables up into one also? Hmmm, what does THINGS and THING_ATTRIBUTES look like? I know, TABLES and COLUMNS. Who would've guessed? SQL already provides the completely flexible extensible attribute model the advocates of EAV proscribe. But it also has data types, physical data independence, constraints and an efficient query language which EAV does not.
    EAV modelling errodes the semantics of the attributes which are bundled into the "attribute" table.
    There is no point in storing 12 different phone numbers with implied functional dependency to unconstrained and often repeating notional attributes like "MOBILE", "LANDLINE", "WORK", err, "WORK2", err, "MOBILE2", err, ... when this phone type attribute has no semantic value. When you want to call someone, you invariably want to retrive the prefered_phone_number which may depend on a time of day, or a call context.
    These things need to be modelled properly (i.e normalised to BCNF) within the context of the database.

  • Closed Activities not transported - How to get stuff into new track?

    Hi, folks!
    We encountered some problems with an SCA-export from ASM system leaving some not transported, but closed activities on DEV CONS behind.
    How can we arrange to integrate the content of these closed activities, which don' t show in CMS any more, into a new track?
    Regards,
    Thomas

    Hi, Pascal!
    I meant the assembly system. The activities haven' t been transported, but seem to be closed in CMS.
    To clear the situation a little more, let me explain what has happened: A colleague created a SCA, deployed it on a runtime system and found out that some screen elements, which were present on development runtime system, are missing.
    We figured out that there are some actitivies haven' t been transported to assembly system and are yet closed and not available for transport in CMS.
    Now, our two questions would be
    1) will releasing and trasnporting dummy activity to assembly to force all changes reach SCA work?
    2) will copying the source DC DTR workspace to destination workspace work? (we have problem not being able to delete folders in DTR as they are created by CMS)
    Regards,
    Thomas
    Edited by: Thomas Wuercher on Sep 24, 2009 4:08 PM

  • VSTO development outlook plugin how to get the full storage path attachment send mail attachments added

    Such as the title, but I have a filepath verified discoveries are empty, there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable. Accessories are found himself in a temporary
    directory exists, the registry seems to have a place to record the address of this directory, but this is his findings do not know can not be used as a method to obtain

    Hello,
    First of all, the forum is for Office Apps. That's why I'd recommend asking VSTO specific questions on the
    Visual Studio Tools for Office (VSTO)  forum instead. For Outlook dev questions see the Outlook for Developers  forum .
    > there is a member of the method will be invoked after GetTemporaryFilePath COM error, but also can not get in VSTO attach the member variable.
    What exception do you get in the code? Could you please be more specific?
    The GetTemporaryFilePath method is only valid for those attachments whose Type property
    is OlAttachmentType.olByValue. That means that the attachment is a copy and that the copy can be accessed even if the original file is removed. For other attachment types, the GetTemporaryFilePath method
    returns an error.
    GetTemporaryFilePath also returns an error when accessing an Attachment object
    in an Attachments collection
    or in the AttachmentSelection object.
    UseGetTemporaryFilePath only in attachment event callbacks listed below for various Microsoft Outlook items:
    AttachmentAdd
    AttachmentRead
    AttachmentRemove
    BeforeAttachmentAdd
    BeforeAttachmentPreview
    BeforeAttachmentRead
    BeforeAttachmentSave
    BeforeAttachmentWriteToTempFile
    Where do you use the
    GetTemporaryFilePath method of the Attachment class? What code do you use?

  • How to get stuff from Performa HD to newer computer?

    I was surprised (well, stunned) to find that a friend has a Performa and wants to get his files off the 160 MB hard drive to an iBook or something. I don't know the model number, but it looks like the only potentially useful ports they had were SCSI. Can that be used for data transfer? I guess you would need some impossible cable like SCSI to USB or something. The only other alternative I can think of is floppy diskettes but that would be quite tedious (might take 60-80 diskette-loads) and we'd have to find an external USB floppy for the new computer. Or is there an easier way?
    Thanks, Jim

    Jim,
    Networking would be the best option but other alternatives exist.
    " it looks like the only potentially useful ports they had were SCSI. Can that be used for data transfer? I guess you would need some impossible cable like SCSI to USB or something."
    Yes, SCSI can be used for data transfer. Find an external SCSI CD-ROM drive that someone has given to Goodwill, pull out the drive and replace it with a hard drive.
    Do you know someone with a Mac that has CD burner? The Performa 475 has an internal SCSI hard drive that could be removed and put into an external case. That external case could then be attached to an older Mac with a SCSI port and a CD burner. The ID would need to be changed but other than that, SCSI works great for data transfers.
    And yes, they do have SCSI adapters but the cost is more than the cure is worth for a one time use. External zip drives are also an option. They come in SCSI and USB. Cost is really the prohibiting factor. You will either pay for one time use of hardware or pay someone to make the transfer. User groups help make trips into the past more affordable.
    Jim

  • How to get back in developer mode

    I can't put application back in development mode, now I can only Running application and I can't see it anymore in Application Builder.
    Please Help me. In documentation I don't see any references.

    Do you have an application export file? If so, just re-import it.
    Scott

  • How to get rid of kernel extension under maverick

    Hello,
    this kernel extension (com.globaldelight.driver.BoomDevice          (1.1 - SDK 10.5)) seems to be causing kernel panic and shuts down my computer randomly. Could you please explain how to unsintall it
    Thank you in advance

    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and (unless otherwise specified in this comment) I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmymac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button. The uninstaller might also be accessed by clicking the Customize button, if there is one.
    Back up all data before making any changes.
    You will generally have to reboot in order to complete an uninstallation. Until you do that, the uninstallation may have no effect, or unpredictable effects.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    WARNING: Trying to remove complex system modifications by hunting for files by name often will not work and may make the problem worse. The same goes for "utilities" such as "AppCleaner" and the like that purport to remove software.

  • How to get rid of #widget extension in URL

    Hi there,
    Couldn't find an answer to this anywhere on the web - hope you can help me out.
    I created a webpage with in-page navigation options. So you click a link on the page and are redirected to another section of that same page, like for instance a 'back to top' option. I used simple HTML snippets to achieve this and it works fine.
    However, and here's my question, when clicking for instance a back to top button the URL actually displays the widget's details. It'll say for instance blablabla.com/home.html#widget8 in the URL bar.
    Is there a way of getting rid of this #widget extension displaying as a URL ?
    I know there's domain masking, but I don't want to mask my entire site, I just want to get rid of the #widget stuff.
    All suggestions are appreciated, thanks.

    I don't think you should worry about what's in the URL because the appearance and content of your site will certainly bring them back. The different anchors can be bookmarked so the individual URLs don't need to be memorized, only your domain name.
    However, using non Web Safe Fonts in your text boxes has converted them to images that that will prevent search engines from indexing your site/page. You could create small image files of the country titles and insert them into the text box. That way they would stay in register with the wine lists but not cause the text box to convert to an image.
    OT

  • How to get adobe-livecycle-reader-extensions

    How (where) can i get LiveCycle-ReaderExtensions for to make AdobeReader able to connect to a Database (example "Excel-Sheets)
    Costs?
    Thanks a lot for your help!
    Regards
    Firefox2013

    It can also be obtained from Datalogics as the Adobe PDF Java Toolkit with Reader Extensions:  http://www.datalogics.com/products/pdfjt/

  • How to get rid of old extensions and add-ons

    How can I remove add-ons and extensions? Or, how can I check compatibility ? I've read the FAQ's, they are useless. There are no "remove" buttons. There are no "check compatibility" buttons. Firefox just updated to 7.0 and now my add-ons are disabled, and I would like to uninstall them and delete them from my computer if they are of no use anymore.

    Thank you for the reply. Sounds like the extension manager needs to be re-written if it can't manage extensions. I would think the extension manager would at least tell me what/where the application that installed it was. I have some Java Development Toolkit plugin that says it is a script library for use with "deploy". I can't find any Java Development Toolkit on my computer, so I guess I'll just leave it disabled until the firefox people can fix their broken extension manager.
    Thanks for taking the time to try and help me though cor-el.

Maybe you are looking for

  • How can I test a NT service from the outside process?

    We have an application that have an unknown problem (we actively search at this moment). The problem is such that the service associated with it seem to "freeze". The application is not responding to any demand (jsp,rmi) and the logs are not coherent

  • Widget (interaction) titles and descriptions

    On Captivate interactions (widgets) such as WordSearch and Glossary, one finds 'title' and 'description' on the header. I can alter the other variables in these interactions, but I can't figure out how to add my own title and description. Any help wo

  • Knows somebody any Java library to convert PDF to Tiff?

    I have problem to find some library in Java, which will be support converting files to TIFF format. Have you some tips? Thank you. Andrea

  • Driver for Samsung Monitor UHD590

    I have buy a mac mini and the monitor Samsung UHD590.  But the monitor font is a little burred.  I think, the resultion is not right. Or give it a special driver??? What can I do. ??

  • Numbers-freezing columns and rows

    Can you freeze columns and rows in numbers although they are not designated as headers?