Is it possible to add support for new database type in Data Modeler?

Hi,
I see that Data Modeler v.4 supports different versions of Oracle, DB2 and MS SQL. Is it possible to add support for a new database family,
PostgreSQL for example? I hoped that RDBMS Site editor can do it, but so far I don't see any possibility to add XML files with metadata for a new RDBMS.
I did it previously for PowerDesigner were it is possible to add and modify definitions for new relational databases.
Thank you,
Sergei

There is discussion option as an out of the box feature. Check this: BI launch pad 4.0: Participate in a discussion about a document

Similar Messages

  • How to add support for new file type.

    Using the ESDK, I would like to add support for new file type ( a new extension). this new extension will function like any other non visual code editor but will have specific syntax highlighting, code folding and explorer.
    I am trying ot figure out if I need to create a new editor or use existing JDeveloper code editor and add support for new file type. Does anyone have a high level outline on how to do this using the ESDK that is specifically targeted at adding new file type support for a text based code editor?
    I have looked at the Samples and keep going in multipe directions. It would be cool if there was an example that was how add syntax higlighting for new file type.
    Thank you

    Brian, thank you. I looked at this extension and it answered a lot of questions for me. I was going in the right direction but needed a little help and bost of confidence, this is just what I needed. I created the LanguageSupport, LanguageModel, Addin, Node and TextDocument that are specific to the new file type. I was getting hung up on how to hook this into the JDevelpoer editor. I keep thinking I have to create a custom editor but it looks like I don't have to and it looks like I can associate this file support with the editor framwork, for version 10.1.3.2, with the following in the Addin Initilize() method.
    Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
    CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
    LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    I have done this but still not able to recognize the new file type.
    At this point, I just want to be able to recognize the new file and display it's associated icon or display a messare to the message log. I put a System.out.println("test") in the Initilize() method of my addin. then I registered MyAddin in the extension.xml. JDeveloper sees this new extension and it is loaded but I have not been able to show the test message or display the new icon when I open the new file type.
    extension.xml
    <?xml version="1.0" encoding="windows-1252" ?>
    <extension xmlns="http://jcp.org/jsr/198/extension-manifest"
               id="teisaacs.jdev.myext.MyAddin" version="1.0.0" esdk-version="1.0"
               rsbundle-class="teisaacs.jdev.myext.resources.MyResBundle">
        <name rskey="EXTENSION_NAME">My Code Editor</name>
        <owner rskey="EXTENSION_OWNER">Me</owner>
        <dependencies>
            <import version="10.1.3">oracle.jdeveloper</import>
        </dependencies>
        <hooks>
            <jdeveloper-hook>
                <addins>
                    <addin>teisaacs.jdev.myext.MyEditorAddin</addin>
                </addins>
            </jdeveloper-hook>
            <feature-hook>
                <description>My Code Editor</description>
                <optional>true</optional>
            </feature-hook>
            <document-hook>
                <documents>
                    <by-suffix document-class="teisaacs.jdev.myext.model.MySourceDocument">
                        <suffix>my</suffix>
                        <suffix>MY</suffix>
                    </by-suffix>
                </documents>
            </document-hook>
            <editor-hook>
                <editors>
                    <editor editor-class="teisaacs.jdev.myext.editor.MyEditor">
                        <name rskey="EXTENSION_NAME">My Editor</name>
                    </editor>
                    <mappings>
                        <mapping document-class='teisaacs.jdev.myext.model.MySourceDocument">         
                            <open-with editor-class="teisaacs.jdev.myrext.editor.MyEditor"
                                       preferred="true"/>
                            <open-with editor-class="javax.ide.editor.CodeEditor"/>
                        </mapping>
                    </mappings>
                </editors>
            </editor-hook>
        </hooks>
    </extension>
    public class MyAddin implements Addin {
        public static final String MY_EXTENSION = "my";
        public void initialize() {
            System.out.println("MyEditor Constructor");
            new MyLanguageModule();
            Recognizer.mapExtensionToClass(MY_EXTENSION, MyNode.class);
            CodeEditor.registerNodeType(MyNode.class, MY_EXTENSION);
            LanguageModule.registerModuleForFileType(new MyLanguageModule(), MY_EXTENSION);
    }I have added and removed the editor hook along with many other modificaitons to the extension.xml but still not recognizing the new file extension.
    Todd

  • How to add support for new JDBC Drivers in WebLogic Server?

    Hi!
    I am using WebLogic Server 10.
    As we know,WebLogic Server contains some jdbc drivers itself,but if we want to use another drivers besides them,what can we do?(I am using Oracle 11g,but WebLogic Server 10 doesn't contain JDBC support for it.)
    Just copy the .jar files of the drivers to the directoty "WL_HOME/server/lib" or need to configure something else?
    Thanks!
    Huang

    Hi!
    I am using WebLogic Server 10.
    As we know,WebLogic Server contains some jdbc drivers itself,but if we want to use another drivers besides them,what can we do?(I am using Oracle 11g,but WebLogic Server 10 doesn't contain JDBC support for it.)
    Just copy the .jar files of the drivers to the directoty "WL_HOME/server/lib" or need to configure something else?
    Thanks!
    Huang

  • Add support for third-party RDBMS

    Is it possible for an end user to add metadata for a new database like PostgreSQL? I see predefined support for Oracle, DB2 and MS SQL Server and wander
    if one can add necessary definitions for other relational databases. I have to support data models for Oracle, MS SQL Server and PostgreSQL,
    and would prefer SQL Developer Data Modeler to other options if it had support for PostgreSQL.
    Thank you,
    Sergei Agalakov

    Hi Sergei,
    you cannot add new database types in current release. We are planning to add such functionality in next releases but we cannot comment on that right now.
    Can you list what do you miss from current import. You can use JDBC import - for PostgreSQL you even can take view definitions and check constraints. Still some tunings can be done.
    Philip

  • [svn:bz-trunk] 20582: Add support for destination-include directory-path=" mydir"/ .

    Revision: 20582
    Revision: 20582
    Author:   [email protected]
    Date:     2011-03-03 12:35:14 -0800 (Thu, 03 Mar 2011)
    Log Message:
    Add support for <destination-include directory-path="mydir"/>.
    This will process each file ending in ".xml" as an individual <destination-include file-path=""/> element, allowing a web application to define a directory of destination configuration snippets.
    Added a new API to ConfigurationFileResolver.java: getFiles(String dir).
    This returns a list of XML files contained in this directory relative to the current configuration file.
    Updated both the ServletResourceResolver and the LocalFileResolver with implementations.
    Modified Paths:
        blazeds/trunk/modules/common/src/flex/messaging/config/ConfigurationConstants.java
        blazeds/trunk/modules/common/src/flex/messaging/config/ConfigurationFileResolver.java
        blazeds/trunk/modules/common/src/flex/messaging/config/LocalFileResolver.java
        blazeds/trunk/modules/core/src/flex/messaging/config/ServerConfigurationParser.java
        blazeds/trunk/modules/core/src/flex/messaging/config/ServletResourceResolver.java

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • 10.4.7 Adds Support for Verizon/Sprint EVDO Cards

    Mac OS X 10.4.7 Adds support for the following EVDO Cards:
    - Novatel 620 (Verizon V620, Sprint S620)
    - Sierra AirCard 580 (Verizon & Sprint)
    - PC5220 (already was supported in 10.3.5, adds support for PC5220 new firmware)
    Lots more information and screenshots at:
    http://www.evdoinfo.com/TheNews/Latest_News/Apple_Adds_EVDO_Card_Support_in_10.4.720060627772/
    G5 Dual 2.5 GHZ, PowerBook G4 15 inch   Mac OS X (10.4.6)  

    If this is correct, then when I get my Merlin S620, all I need to do is pop it into my 17" Powerbook and I'm good to go??!?!?! If so, then WOOOOOOOOOOTTT! However, I am not getting an unlocked card...will I still need to go through a PC to unlock it? What are the steps?

  • Please add support for MXF files created by Blackmagic Hyperdeck Studio

    We have a Hyperdeck Studio that records DNxHD220 files in a MXF wrapper. Right now it is not possible to import them into Premiere CS5.5.
    It would be great if Adobe would add support for those files.
    Regards
    NFact

    It's mostly users here in the forums.  Here's how to get Adobe to listen.
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • HT201071 Please add support for Hasselblad CFV-50

    I just replaced my Hasselblad CFV-16 with the CFV-50, and now I have bad redish view only of my files both in Preview and Aperture.
    Please add support for the file format from CFV-50, it's not a all new Digital Back (it's out since severals years now).
    We can still convert files into DNG using Hasseblad tools and made the DNG file reconized by Preview and Aperture, but would like to be able to manage my original RAW files from Hasselblad in Aperture like I was used to do

    This is a user-to-user forum and is not monitored by Apple for feedback purposes. You can give feedback to Apple here: Apple - Mac OS X - Feedback

  • [svn] 4078: Add support for dataTips to Slider

    Revision: 4078
    Author: [email protected]
    Date: 2008-11-11 17:41:52 -0800 (Tue, 11 Nov 2008)
    Log Message:
    Add support for dataTips to Slider
    SDK-16291 Implement data tip for slider
    - Added new dynamic, optional skin part called "dataTip".
    - Added dataTipFormatFunction, dataTipPrecision and showDataTip properties
    - Added protected function positionDataTip
    - Added dataTip skin part to FxHSliderSkin and FxVSliderSkin
    - data tip is an IDataRenderer, so it can render any type of data
    The data tip appearance is defined entirely by the skin. The position of the
    data tip is calculated using a combination of the skin and the Slider controller.
    The following properties were not retained from the Halo Slider:
    - sliderDataTipClass (the skin part allows the developer to define the data tip type)
    - dataTipStyleName (styling is defined on the skin part)
    - dataTipOffset (the offset position is defined in the skin part)
    SDK-16823 - Gumbo Slider does not support scroll wheel to increment / decrement value
    Slider listens for scroll wheel events anywhere on or off the stage while it has focus.
    QE Notes: Test new properties, functions and data tip behavior
    Doc Notes: Added new properties and functions
    Bugs: SDK-16291, SDK-16823
    Reviewer: Glenn and Gordon
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16291
    http://bugs.adobe.com/jira/browse/SDK-16823
    http://bugs.adobe.com/jira/browse/SDK-16291
    http://bugs.adobe.com/jira/browse/SDK-16823
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxHSlider.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxVSlider.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxSlider.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxTrackBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxHSliderSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxVSliderSkin.mxml

    Kaffeegler
    Try rolling your fingertip on the mouse pad. This works very well and you have much more control.
    You've mentioned that you get fed up and then insert numbers or even click the up/down arrows.
    Alternatively and I only found this out the other day - thanks Victoria B.
    Use the comma , and period / stop . keys to navigate down / up through the settings below
    LR4 settings
    temp (white balance)
    tint
    exposure
    contrast
    highlights
    shadows
    white clipping
    black clipping
    clarity
    saturation
    vibrance
    LR3 settings
    temp (white balance)
    tint
    exposure
    contrast
    higlight recovery
    fill light
    black clipping
    brightness
    contrast
    and use the + and - keys  to move the sliders up and down in medium (±5)  steps and press control / cmd and + -  keys to use smaller (±1) steps. I think using the alt / option key with the + and - keys moves the sliders in larger (±10 oe 20) steps.
    You can use the aleft right rrow keys, but for some reason (bug), they dont follow the focus with the , and ., so you still need to click on the sliders to move the focus from one setting to another if you prefer to use the arrows.
    As I said above, the apple magic mouse is amazing for OSX snow leopard and Lion and is so intuitive for LR, but its an expensive mouse but IMHO well worth it
    Hope these help, the , and . is a great alternative to rolling your finger on the touchpad.
    hamish NIVEN Photography

  • [svn] 3203: Add support for inline two-way data binding (syntax is @{expr}) .

    Revision: 3203<br />Author:   [email protected]<br />Date:     2008-09-14 05:11:47 -0700 (Sun, 14 Sep 2008)<br /><br />Log Message:<br />-----------<br />Add support for inline two-way data binding (syntax is @{expr}).  Also add support for two-way data binding via the <mx:Binding> tag and the new property twoWay=boolean (default is false).<br /><br />Code Reviewer: Paul<br />QA: tests for this feature need to be added to the regression test suite<br />Doc: new feature which needs to be documented<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/SyntaxAnalyzer.java <br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AbstractBuilder.java <br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AnonymousObjectGraph Builder.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/DocumentBuilder.java <br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ModelBuilder.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ServiceRequestBuilde r.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/XMLBuilder.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/XMLListBuilder.java< br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/BindingNode.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/TextParser.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/BindingExpression.java<b r />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MxmlDocument.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties

    EvilDave UK wrote:
    Surely there's a more practical way around this without having to reboot?
    Before you go to the trouble of going through all those steps, be warned that attempting to use Dreamweaver CS4 with SVN could even cause Dreamweaver to crash after updating to SVN 1.6.2. I, too, have abandoned SVN integration with Dreamweaver until the problems are sorted out. I reported this problem to Adobe a couple of weeks ago, and spent a long time working with an Adobe engineer, who was able to reproduce the problem, but not offer a solution. Hopefully, the next version of Dreamweaver will have more robust support for Subversion.

  • IOS Newsstand app, add support for .folio files

    Hello!
    We have an iOS Newsstand app to provide our issues to our clients, and we use a PDF reader.
    We would like to add support for .folio files in the app, by using a folio reader in our app.
    Searching around, I've only found the specifications for the .folio files and the Adobe Content Viewer app.
    Is it possible to have some more specific information on how we can make something like the Adobe Content Viewer app that we can integrate in our app?
    For example how we would parse the xml files, what views/controls to use (eg. UIWebview?) etc.
    Thank you very much!

    Neil let clear something:
    - After the .folio specification became public (with license off course) the "This really isn't possible to do" is not truth.
    I believe that what people need to know is that: "Are we allowed to build a viewer?" / "Does Adobe allow programmers to give it a go?"
    Before March this wasn't allowed but since the spec became public we all hope (and I believe Adobe too) that this format will have an industry standard acceptance - like the PDF. In this case many people will try to create  viewers, software, builders etc.
    The DPS is a great platform but VERY EXPENSIVE. Companies around the world have developed and are in a position to develop great experiences and great apps. Sharing the .folio is big and this is what we need to clear - and not the number of staff working on the DPS Viewer.
    Thank you in advanced.

  • Arabic is not listed as a display language in iTunes for Windows 7. How can I add support for this language?

    Arabic is not listed as a display language in iTunes for Windows 7. How can I add support for this language?

    Edit  ---> referance ----->   general    ------> language

  • R12 Time Card - Is it possible to add criteria for Choice list?

    Hi,
    Is it possible to add criteria for choice list created using HXC_CUI_CUSTOMn_V?
    If it is possible could you share which attribute to use and if could share sample code that will be great.
    Thanks
    Prasad

    You actually have a choice of both Norsk Nynorsk and Norsk Bokmål.
    First select your text then:
    +Inspector > Text (T tab) > More > Language > Norsk Nynorsk / Norsk Bokmål+
    The method is to label the language you want to spell check with its native dictionary. So having done the above, when you spell check it will now use the Norwegian dictionaries.
    see p 115 +Working with Spelling Suggestions+ in the Pages09_UserGuide.pdf downloadable from under the Help menu.
    If you don't see the Norwegian options it is because you haven't added them in the International preferences in your System preferences:
    +Menu > Finder > System Preferences… > International > Language > Edit List… > Norsk Nynorsk and Norsk Bokmål > OK+
    If you drag them to the top of your language list they become the System language. If you leave them lower down they are available in other menus such as Pages Inspector palette.
    Peter

  • [svn:fx-trunk] 10876: Add support for drag-and-drop from Spark List to Spark List.

    Revision: 10876
    Author:   [email protected]
    Date:     2009-10-05 15:20:07 -0700 (Mon, 05 Oct 2009)
    Log Message:
    Add support for drag-and-drop from Spark List to Spark List.
    - List drop related handlers
    - LayoutBase APIs
    - VerticalLayout DND support
    Notes:
    - ListSkin is not final.
    - Drag-scrolling not yet implemented.
    QE notes: Only VerticalLayout works, HorizontalLayout still not implemented.
    Doc notes: None
    Bugs: None
    Reviewer: Deepa
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/VerticalLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/LayoutBase.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ListSkin.mxml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/DropLocation.as

    Whoops, disregard my question - I just read the spec that indicates drag and drop is scheduled for later work.
    David

  • Add support for custom xmp panels

    Please add support for custom xmp panels.
    Thanks

    I would strongly support that too!!!
    Here is why: We have been working at an XMP implementation of the Darwin Core to support standardized metadata on biodiversity information. Have a look here. I would love to have an Panel in Lightroom to support the metadata that I am embedding with IDImager:
    http://wiki.idimager.com/index.php?title=DarwinCoreXMP#.27.27.27Darwin_Core_XMP.27.27.27
    Cheers,
    Frank

Maybe you are looking for

  • Error in ftp file transfer

    Hi All,   I am trying to populate pdf from sap server to different server. when  i am trying to open that pdf in target system , getting the error " root object is missing or invalid "  here is my code : CALL FUNCTION 'HTTP_SCRAMBLE'      EXPORTING  

  • How to run long running report in the background

    Oracle Application server 10g I need to run the long running reports in the background because while the report is running the cursor is loading and the control doesn't return to the user this feature exist in oracle 6i by set the following parameter

  • CRITICAL: CF7 NOT PICKING NEW SERVER TIME - STILL 1 HR BEHIND!

    Our patched/updated Win 2003 server has been reset to the correct daylight savings time but CF still reports back the time as one hour behind. We have copmletely stopped & restarted all CF services several times. Even the application.log reports star

  • Audio Problems - Presenter 6 & 7

    I currently use Presenter 6.2 (but have also downloaded and tried this with Presenter 7.0). Whenever I try use Import Audio, Synchronize Audio, or Audio Editor, Powerpoint crasches. That is part of the problem. The other more serious part for now is

  • I'm begging for help here.

    Today I made an awful mistake taking some very important photos and videos off of my iphone and placing them into a destop folder on my PC. The photos came off very easily by opening the the folder that was containing them and simply dragging and dro