Create application from database issues

Just trying out the 'Create application from database'
feature and found the following.
Running:
Vista
Flex Builder 3 Public Beta 2
Visual Studio 2008
- The wizard cant find the development web server so IIS is
the only choice. I assume VS2005 & 2008 are different.
- When validating the IIS option it would always fail until I
enabled directory browsing (IIS 7).
- When creating a SQL connection the wizard will not connect
to a SQL 2005 named instance. Tried 'localhost\instance' and
'hostname\instance' and get the following error.
java.sql.SQLException: Unknown server host name
'DMC\DEV2005'.
at
net.sourceforge.jtds.jdbc.ConnectionJDBC2.<init>(ConnectionJDBC2.java:364)
at
net.sourceforge.jtds.jdbc.ConnectionJDBC3.<init>(ConnectionJDBC3.java:50)
Dave

Hi Dave,
Would you please file a bug with all the necessary details
regarding this issue? The bug base is found at:
http://bugs.adobe.com/jira.
We’ll look into this. Thank you for letting us know!
Lacra

Similar Messages

  • "Create Application from Database" and BLOB type

    Hi all,
    I see many threads about BLOB type but my question is related to the Flex Builder built-in feature "Create Application from Database".
    Is there a way or a sw version to automatically use MySQL BLOB types when creating a PHP/database application?
    Thank you!

    Hi Dave,
    Would you please file a bug with all the necessary details
    regarding this issue? The bug base is found at:
    http://bugs.adobe.com/jira.
    We’ll look into this. Thank you for letting us know!
    Lacra

  • Create Application from Database and Air

    I have tried several time to use the create application from
    database for an air app build in flex. I do the same steps and the
    only difference is that I click the create button as air not web.
    It does not seem to work. Does the create application from database
    command (referencing php mysql) work with Air???
    Thanks

    Hi Dave,
    Would you please file a bug with all the necessary details
    regarding this issue? The bug base is found at:
    http://bugs.adobe.com/jira.
    We’ll look into this. Thank you for letting us know!
    Lacra

  • Flex / Data / Create Application from Database

    Hi, I had a question,
    When I create an application from a Database (Flex / Data /
    Create Application from Database).
    Can I modify the coded to convert it into a module?
    I have a main application that I would like to load the
    Database as a module. I tried replacing the <mx:Application>
    Tags to Module but didn't work...
    Thanks.

    Hi,
    no. no answer as yet. Seems to be a connection issue with the
    Windows 2003 Server, although all the seetings are correct.
    I installed WAMP Server 2.0 locally to see if I can get the
    project running locally, and it works fine. I can connect no
    problem to the MySQL Database on my local PC. I might just have to
    migrate everything over manually once the project is
    complete.

  • After "create application from database"

    hi all,
    i succeeded to build server and client side code using "create application from database"
    now my question is: how to use these files to build my application?
    for example, i need an OlapDataGrid that works on joined tables, not on a single table...
    thank you all!

    Hi Dave,
    Would you please file a bug with all the necessary details
    regarding this issue? The bug base is found at:
    http://bugs.adobe.com/jira.
    We’ll look into this. Thank you for letting us know!
    Lacra

  • Create app from database doesn't work

    hi all, i am new to developing in flex, and just set up a
    test-database (php, mysql) - i created a php project, and when i
    choose data->create application from database nothing happens
    ... just nothing ... any help would be very much appreciated, i am
    sure it's a no-brainer, but i just can't figure it out at this
    stage ... i run a full version of flex 3 pro

    Did you check the online documentation ? [http://help.sap.com/abapdocu_70/en/ABAPIMPORT_MEDIUM.htm#&ABAP_ALTERNATIVE_4@4@]
    I see your code has differences from the example provided in the standard documentation.

  • Create application from spreadsheet failing - APEX 3.0

    Create Application from Spreadsheet failing (wrong column order) on the upload
    example csv columns are nameA, nameB, nameC
    Upload as csv
    The column order of the csv file changes....(its random).
    example csv is nameC, nameB, nameA -.but sometimes it works after numerous tries uploading it (column order is correct - same as csv file)
    I have another apex/db (10.1.0.4.2) installation(same version 3.0) where it works all the time(same csv file)
    The database for the failing Apex installation is (10.2.0.1.0)
    ANY IDEA???...could be a a database caching issue or a wrong db parameter?

    What table gets populated when you upload a csv file via create application from spreadsheet (is it only APEX_APPLICATION_FILES)? Because if i import the csv file in the repository it looks file when i download it. I not sure what controls the order of the csv file column order upon the upload create application from spreadsheet process. This is a very perplexing problem since it works on another apex 3.0/10.1 database environment.
    thanks

  • Problem creating application from spreadsheet(.csv)

    I am experiencing a problem while creating an application from a spreadsheet (.csv file). I select upload csv file, the filename, and on the set table properties page the columns are in random order. Normally, the columns follow the order of the first line of the .csv file with comma separated column names. If the columns are not in the order specified in the .csv file, it cannot be loaded. I have used this method a few times and never had this problem in the past. Any information is appreciated.
    Thanks.

    Hello,
    Sure you cannot utilize the spread sheet functions in creating a Database app.
    You can do what you want by either using SQL function in the Report source, or if you use Interactive report then you can do it using Actions Menu >> Format >> compute .. Then you save your report as a default report.
    Please read more here:
    http://apex.oracle.com/pls/apex/f?p=44785:24:0::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5719,29
    http://apex.oracle.com/pls/apex/f?p=44785:24:0::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5717,29
    http://apex.oracle.com/pls/apex/f?p=44785:24:0::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5718,29
    Best Regards,
    Fateh
    If you believe that my answer was helpful to you or correct then please mark the answer as helpful or correct
    Edited by: Fateh on Nov 21, 2012 3:23 AM

  • Create View from Database Links - Question

    Question
    I'm missing something simple.
    I'm trying to create a view, from a Database Link.
    CREATE VIEW view_name
    AS SELECT a.*
    FROM schema.tablename@dblink a;
    When I run this in the SQL Commands window.
    I get this error message.
    ORA-00933: SQL command not properly ended
    What am I missing? Any help is appreciated...

    <i>CREATE VIEW vw_name
    AS SELECT a.*
    FROM [email protected] a;
    </i>
    <br>
    1) User (schema) which is creating view must have proper db_link to source database. For that try this for testing purpose:
    select 1 from [email protected]<br>
    If this fail then db_link is not ok! This step is absolute must to go any further step to!!!
    <br>
    2) when db_link is set, then your view should be named as:
    CREATE VIEW vw_name
    AS SELECT *
    FROM <b>schema_name</b>.[email protected];<br>
    please pay attention to "schema_name", because from remote side every table is in some schema so it really need declaration of owner schema.
    <br>
    Hope this helps...

  • Creating Entities from database tables ?

    Hi everyone,
    I am trying to prpare an entity relationship diagrams for a small application that about 5 or 6 tables. Can someone please let me know how I can reverse engineer or make entities from tables ?
    Thanks
    IQ

    Hi there,
    I have checked to see that I" am using the correct container. Also this is a fresh Designer installation so there are not previous entities.
    I however notice a few warningas and and error. I am sure this should not be the cause for me not seeing tables in the table to entoty retrofit but I may be wrong. I am seing the following warnings/ errors. Is this the cause of my problem or could it be something else.
    CDS-15317 Warning: invalid Database User reference ('RCAR') in Database Object Grant to 'RCAR' - ignored
    CDS-15317 Warning: invalid Database User reference ('BOLDING_SHARED') in Database Object Grant to 'BOLDING_SHARED' - ignored
    CDS-15317 Warning: invalid Database User reference ('SKMT') in Database Object Grant - ignored
    CDS-15317 Warning: invalid Role reference ('PASD_USER') in Database Object Grant to 'PASD_USER' - ignored
    CDS-15014 Error: invalid Table reference ('EMPLOYEES') in Foreign Key 'EMP_FK'
    Processing Complete: 1 error(s), 281 warning(s)
    Please advise
    Thanks
    IQ

  • Create repository from database model- snowflake facts and dimension joins

    I am working on a project that has a database model similar to the image in the link below.
    There are other few tables around it, but this generally represent the spine or major database model. This is not exactly a snowflake schema as there are no intrinsic hierarchy in the dimension tables. As you can see dim2 and dim4 has one to many relationship with dim3. there are joins between the fact tables as well.
    From some blogs and forum threads, I found out that I can create one fact/dimension table by joining many fact/dimension tables. Is this a right approach? Any thoughts on this model please?
    Thanks,
    Rakesh
    ps: I am using Windows XP Pro and OBIEE 10.1.4.3.1 and right now analyzing the data to create a repository.

    Hi Rakesh,
    As above post says you combine all fact tables into single fact table with other dimension tables so it would become a simple start schema .Go throught these blogs for further information .
    http://forums.oracle.com/forums/thread.jspa?threadID=2124061&tstart=0
    http://www.obinotes.com/2010/08/joins-within-logical-table-sources-in.html#comment-form
    Hope it helps you.Seems your new to forum you sud follow these rules http://forums.oracle.com/forums/ann.jspa?annID=939
    By,
    KK

  • HELP!  Need help in restoring APEX application from database backup

    I accidentally deleted many pages from my development APEX environment when I thought I was deleting from QA.  By the time I discovered it, it was too late to do a flash back.  The DBQ I am working with is now trying to recover from a database backup, but we are not having much success.  Can someone point me to any documentation that may exist on exactly what to restore from what schemas?  It is not intuitively obvious what should be extracted and restored?  Any help would be GREATLY appreciated!

    I have older exports, but I would loose 2 weeks of work by going back to them. I need to be able to restore from a database backup so I get back my changes. What we tried to restore didn't bring back the deleted pages so we must have done something wrong.

  • Create tabs from database retrieval result set?

    Trying to figure out how to dynamically create tabs based on a database result set....
    for example when page launches, a db connection starts, and a query is made to retrieve say, distinct colors available in a db table, and a tab page is generated for each color found... is there a way to do this?
    Thanks for any advice or assistance. Example would be big help.

    Thanks for the link, I think I'd read that before, but wasn't too sure how I could adapt it to create tabs... not sure where to find the method references to the tabset or tab components to call... any tips or examples would be useful. Thanks!

  • Java to create hyperlinks from database-specified paths

    Hi, I�m using Tomcat 5.5/Java 5.0. and Windows 2000 and Internet Explorer 6
    I have a network path specified in a MySQL database table (e.g. one path might be: \\Rpfs01\Department\Finance\Public\Requisitions 4000+\req 4005 Sigma.xls)
    I�d like to query this database table and display the results in an HTML table with the above path to be used as a hyperlink (i.e. the user clicks on the hyperlink and up pops a 2nd page containing the xls file specified by the path).
    the problem is that web-page is viewing the path as containing escape characters. (i.e. if I click on the link as specified above, I get a file not found error. But if I add extra backslashes directly to the html code, the link works fine [e.g. \\\\Rpfs01\\Department\\Finance\\Public\\Requisitions 4000+\\req 4005 Sigma.xls]).
    Is there a way to have java automatically add the required back-slashes to make this work? I tried replaceAll (i.e. myPathString.replaceAll(�\\�, �\\\\�) ) but this is giving me a PatternSyntaxException.
    Any suggestions on how to fix?
    Thanks!

    Have you tried the URLEncoder class? Something like:
    String urlPath = java.net.URLEncoder.encode(networkPath, "UTF-8");

  • Creating Entitybeans from Database-Views with Sun Applicationserver 8.1

    Hello,
    I�m implementing a databaseapplication with J2EE and Sun AppServer 8.1. Now I actually don�t want to use the database-tables directly. Instead I want to use views, because then the structure of the underlying table doesn�t matter. Only the view needs to be modified.
    Is it possible to use Entitybeans with views? Or is it only possible to use EJBs with tables?
    If it is possible please be so kind to give an example or explain how. I tried the capture-schema - Approach but there are no views in the capturefile. Please help!
    Thank you!
    Gregor

    You should be able to use views with EJBs, but as you correctly realized, you need to get them into your dbschema file first. Try specifying the view names as parameters to the table arguments in the capture schema tool, or try the UI for schema capture in NetBeans or Studio.

Maybe you are looking for

  • Did you know that this account is really belong to...

    i am eddieson zubiri and my account is been playing with claudius,, which they are very busy now,,  asking question here and ther,, because that this not for them to play with

  • Various iWeb Problems

    I've done a good amount of reading on the forums and am still not able to determine a solution to the problems I am having. Here are the details. I am trying to create a site to show off family photos, of which we have over 1000. I have things broke

  • Fingerprint scanner on Win 7 64-bit slows machine

    Brand New Tecra R840. Running Windows 7 Enterprise 64 bit. Any ideas on how to make the fingerprint utility more responsive. There is a 3-10 second lag when trying to log in , or unlock the computer. It scans just fine, but the time between the compu

  • IPad failing to import pictures properly

    When using the camera co nekton kit's memory adapter to bring pictures into my iPad, it keeps exiting the application prematurely. On a card with 60 pictures on it, it will Import 3-6 pictures and then need to be restarted. Eventually you get there,

  • [solved] Building xfce4-panel-git

    Hello. I've satisfied all depps for xfce4-panel-git. However, I have a problem: Build Configuration: * Debug Support: yes * GNU Visibility: yes * Documentation: no make all-recursive make[1]: Entering folder `/tmp/yaourt-tmp-kant/aur-xfce4-panel-git/