Connecting app with online database

Hello,
I have a problem and I'm hoping that you can help me solving it. I want to connect an online database with my windows phone app.  The database would have some data which I want to display in the app, users will be able to rate stuff that are in the
database and add some stuff in it. So my problem is that I don't know which database is the best for me to use, a free and a simple one would be great.
Thank you in advance 
Otavio 

Hi Otavio,
According to your description, you want to public your database content, share and collect content from client apps. You will need to build a virtual machine on
cloud service, install database instance on it, and use
RESTful service to public
CRUD operations. Unfortunately, there is no free version of cloud service. You can use your favor search engine to find more cloud service if you want.
Another option is to use local database, such as
sqlite. It’s free but you will need to do more work on data synchronization.
Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Flex Mobile Application with online database

    Hi,
    I would like to create a Flex Mobile Application but this one have to be read/connect  to a online database ?
    I don't found any tuto or infos about that...
    Could you please tell me if it's possible and if yes, how to do that
    Thanks in advance !

    I don't understand one thing...
    There are different type to do a connection between Flex and PHP.
    Which one is the best ?
    1. With AMF (Flex :  service-config.xml, RemoteObject) (http://www.adobe.com/devnet/flex/articles/crud_flex_php_zend.html)
    2. With Zend Framework (Flex : Callresponder, Time,...)  already included in Flash Builder 4.5 (http://devzone.zend.com/1701/flex-and-zend-framework_part-1/)
    3. With Zend Server and Flash Builder 4.5 with PHP (http://www.adobe.com/devnet/flash-builder/articles/flashbuilder-php-part1.html)
    It's three differents approach but in 2 & 3, it's auto configured with Flex.. however to do a connection between Flex Mobile & PHP (online), I have to use the solution 1
    So, if somebody can help me to explain and understand the difference between that.
    thanks

  • Query regarding connecting dashboards with SQL DATABASE using WSDT

    Hello Sir,
    I am trying to connect dashboards with Sql database via WSDT, but i have encountered the same problem as described in your SAP community blog (SAP Web Service Design Tool: From web service creation to Xcelsius consumption).
    when i tried connecting CR server with WSDT ,it still shows that total number of available licenses is 0.
    What can be done to solve this issue.
    for your detail reference, we are using CRS NUL version's 60 days Evaluation keys and same with Xcelsius Departmental edition.
    I would really appreciate, if you revert back to my mail as soon as possible

    Which version of Crystal Reports are you using? The regular ReportDocument SDK probably isn't robust enough to handle this, unless you create a connection using that connection string at design-time which you don't change at runtime. You might be able to add those properties using the in-proc RAS SDK, though. This is available with CRXI R2 as of SP2, and CR2008.

  • How to Use No DB connection App with task flow desined as 'New Transaction'

    Hi,
    My application is fully depend on Custom java datasource implmentation and it requires no DB connection at all. I've done necessary implementation (http://andrejusb.blogspot.in/2012/03/use-case-for-adf-bc-with-no-database.html) by creating CustomDatabaseConnectionStrategy that says
        @Override
        public ApplicationModule createApplicationModule(Hashtable env) {
          env.put(Configuration.DB_REQUIRES_CONNECTION,Boolean.FALSE);
          env.put(PropertyMetadata.ENV_DO_FAILOVER.pName, PropertyConstants.FALSE);
          return super.createApplicationModule(env);
        }My application works fine until i keep my task flow transaction as 'No Controller transaction'. Yes, I use Dynamic tab shell template as UI. But when I keep it as 'Always Begin with New Transaction' and not to share the Data control, Screen is not at all getting rendered. I get some exception (I guess the moment I try to open the task flow, it is trying to get the connection. Since there is no connection available, It gives me this error. Is it so?)
    One of my client requirement is to open the same screen under multiple tabs as a fresh screen (i.e. with different transaction. We do transaction through tuxedo transaction server). If I load a screen under first Tab with some data, added some record, deleted some record.. and If I load the same screen under another Tab, it should not refelect the same data whatever I have under first Tab.
    Requirement:
    I don't have DB connection in my app. But I should be able to define the task-flow to open with new instance of Application module whenever it is opened.
    Your help on this would be appreciated.
    Raghu

    If I understand you requirements correctly, you do not need ADF taskflow transactions but you just need fresh DataControls. If it is so, then you do not have to set the taskflow's transaction behaviour to "Always Begin with New Transaction" (e.g. keep it to "No Controller Transaction"), but set the DataControl frame to "isolated" (e.g. uncheck the "Share data controls with the calling task flow" checkbox in the taskflow's Property Inspector). In this way each taskflow instance will be started in a different DataControl frame (e.g. it will instantiate its own set of ApplicationModule instances).
    Dimitar

  • Connecting AIR with external database

    Is it possible to connect AIR application to the external database in MySQL technology?

    Are you trying to connect to a MySQL database on a web server somewhere? If so, by far the easiest way to do so is to use some sort of application server layer (e.g. PHP, ColdFusion, Java) on the web server, and have the AIR application call the PHP (or whatever) code to get the data. That is the approach that all the links Greg has given you are talking about.
    Of course, in order to make that work you need to know enough PHP/Java/ColdFusion to write that middle layer. In the example you're asking about, the information it wants to know is the name of the server that the MySQL database is running on, and the MySQL username and password for the MySQL account that your PHP code is supposed to use. There are tons of resources on the web for writing PHP code that accesses MySQL, so you'll find much more and better information in other places than what you'll find in the Adobe AIR forums.
    However, maybe you want to have the MySQL server running directly on the user's computer rather than on a web server somewhere. In that case you would have a few options:
    Run a web server and application server (e.g. Apache and PHP) on the user's computer and use those to connect between the AIR application and the MySQL server.
    Write Java code to communicate between the MySQL server and the AIR app, and call that code using Merapi (http://merapiproject.net/)
    Run the MySQL server on the user's computer and call the server directly from AIR using ActionScript. While there is no built-in support for MySQL in AIR, there is a third-party (open source) library for calling MySQL directly from ActionScript available here: http://code.google.com/p/assql/. I haven't tested it so I have no idea how complete it is, but it's a solution to consider.
    However, in all three cases you're depending on some external pieces that have to be installed and loaded separate from your AIR application. (For instance, most users probably don't want a MySQL server running on their computer all the time if they aren't using your AIR app all the time -- so you'd want a way to start and stop the server, which also couldn't be done directly in AIR.) People do write applications that use external resources like this, but it's not the easiest thing to implement.
    If you're really wanting to run the database locally, the best solution (assuming it works for your needs) is to use AIR's built in local SQL database engine (based on SQLite). If you've looked at that option already, and found that it doesn't work for you, I'd be interested to know more about what you're trying to accomplish that you can't accomplish with the AIR local database.

  • Connecting php with oracle9i database

    i tried to connect to oracle 9i database after creating
    dsn name as studentphp with username admin and passwd admin by using the following command and i got the following error.
    pls suggest me some solution
    $link=odbc_connect("studentphp","admin","admin");
    Warning: SQL error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified, SQL state IM002 in SQLConnect in C:\Documents and Settings\ramakrishna.MSITLAB\Desktop\SIS\login_form.php on line 20

    I think you are in window platform, so you need to get oracle driver for ODBC and create data source in ODBC.

  • Oracle Discoverer 4i (portal db - oracle 8i) connectivity issue with 11g database

    Hi All
    We have oracle discoverer 4i with portal db (oracle 8i).
    We connect to the external databases using db links in the portal db and the reports will use the db link to retrieve the data from views in the external databases.
    External databases we were connecting is oracle 10g version and now we have upgraded these databases to 11g version.
    Now i have a created a new db link to this 11g database and i have created a new EUL in portal to connect to this 11g database.
    But when i try to create a report using the discoverer from this new EUL after login to the discoverer we get a "cannot connect to database" error.
    We have all the necesscary privilege to the user and the new database link works perfectly fine. (when we try to query directly using SQL plus from portal database using this db link the query works perfectly fine).
    Im not sure if this is a compatibility issue in connecting from oracle disc 4i to a 11g database.
    Can any one advise if this is the case and if there is any workaround for this?
    Regards,
    Raj

    Are you saying you are having issues with a database link between 8i and 11g (pl post exact versions to 4 digits) ? If so, it should be expected as database links between these two versions are not supported. Is there a reason you cannot upgrade the portal database to at least 10gR2 ?
    See MOS Doc 207303.1
    HTH
    Srini

  • Phpmyadmin connection issue with mysql database on local computer

    Got mysql and phpmyadmin installed on my iMac. I open phpmyadmin site in safari and try to login to the database and I get the following error:
    "Safari can’t open the page “http://imac.local/phpMyAdmin/index.php?lang=en-utf-8&token=872752b265e4d375dddae b18d06bd85b” because the server unexpectedly dropped the connection, which sometimes occurs when the server is busy. You might be able to open the page later."
    I can connect to the sql database okay from the mysql manager gui just fine. Any suggestions?

    Hi David-
    Thank you for your QUICK and CORRECT reply!  Yes, creating the _mmServerScripts folder in my SSL folder on my remote server did the trick!!
    I did try to setup a testing server using one of your tutorials, but I received FTP errors.  Since I have a working website with remote and testing flagged on the same server and for my ease of understanding, I copied the setup as closely as I could (less the SSL add-on).  Mind you, I originally setup that website 3 years ago, so I'm a bit rusty.  I'm not a web developer and don't do this for a living, thus I get by with instructions from the books I own, web tutorials, Adobe forums, etc., but I have not taken any classes.  It's not my choice to work with PHP, but I have to in order to pull data from database tables into my web pages.  Since I don't do this for paying customers, I don't have to setup anything too fancy (thank goodness).  I would like to know how to debug and write java script code, but I lack the time and patience (mostly patience).
    Besides...Adobe does such a good job with their products, that I can get by pretty well without having to know everything.
    Again, THANK YOU!!!
    PS- Would you mind replacing my root site info above with the following:  www.sitename.com/ssl/

  • How to connect JSP with MySql Database?

    HI All...
    I want to know or How to connect Mysql with JSP or JSF any other software is available? please help me.....

    I want to know or How to connect Mysql
    with JSP or JSF any other software isavailable?
    please help me.....First you need to find 25 m of a CatV cable and...The DB files need to be located on the ninth device of a SCSI Daisy Chain with the total SCSI cable length being over 150 m (and the devices (and cables) need to be mix of Differential and Non-Differential).
    Edit: And forget the terminator, who needs it?

  • How to connect portal with msaccess database

    we have to develop oracle portal applications with msaccess as a back end.how to connect portal to access.
    thanks in anticipation.

    I want to know or How to connect Mysql
    with JSP or JSF any other software isavailable?
    please help me.....First you need to find 25 m of a CatV cable and...The DB files need to be located on the ninth device of a SCSI Daisy Chain with the total SCSI cable length being over 150 m (and the devices (and cables) need to be mix of Differential and Non-Differential).
    Edit: And forget the terminator, who needs it?

  • Connect Problems with Oracle Database Express Edition 11g Release 2

    Hello,
    I am a student trying to install Oracle Database Express Edition 11g Release 2 and SQL Developer on my home system, Win7 64Bit, in order to practice some things I've learned from me DBA class and Developer classes.
    Anyway, I have everything installed, but I am having difficulty connecting as SYS or SYSDBA in the 'Run SQL Command Line', I keep getting the ORA-01017: invalid username/password: logon denied.
    However, If i select the 'Start Database' I get this:
    C:\oraclexe\app\oracle\product\11.2.0\server\bin>
    and I can type sqlplus / as sysdba and it starts up just fine and show user lists me as "SYS".
    but if I go back to 'Run SQL Command Line' I still cannot connect as SYS or SYSDBA...I find this both confusing and frustrating. I don't know if I am in different instances or something like that, but I seem to be limited to connecting only as "SYSTEM". I need SYS because I want to practice creating datafiles, instances and things like that, but I seem to be lost.
    Also, I am trying to create a new DB connection with SQL Developer and I can only us SYSTEM for my login which, if I understand correctly, will limit my privileges. Again When I try to sign in with SYS or SYSDBA I get error'd out. When I installed Ora11gDBExpress I was prompted in input a single password that was supposed to grant me access as SYS or SYSTEM, but I am limited to only SYSTEM for some reason.
    So, I am looking for help/guidance as to what to do.
    Thanks in advance for any and all help,
    Warren

    General rule of thumb, don't use sysdba unless you want to shut down the database, or grant a database user privileges on a sys object.
    A SYSTEM connection is not "limiting", it has the DBA role which means a user with a system connection can do most anything needed, including select/update/delete/drop any user's objects as well as change parameters in the instance.
    The system user can indeed add datafiles, tablespaces, etc. The instance and database should already be created as long as the installer completed all its chores correctly. For XE, per the license agreement only one instance can run on one host. If you want to try creating a database, it will require shutting down the XE instance and creating a new database service, creating the database, and installing the system catalog and any other optional components desired. Good practice indeed, but a bit advanced for the new user.
    Do create users for schemas ... connect system; create user <username> identified by <password> and connect <username> for the schemas (a collection of objects) within the database. Grant the resource and create session privilege to <username> to allow the database user the ability to create tables, indexes, stored procedures, etc.
    There is no "or" in a sys as sysdba connection, from 10g onwards a sys connection requires using the sysdba privilege. To enable a sysdba connection, add your host user to the ORA_DBA group on the host. To verify the OS users in the ORA_DBA group, this might work for win7, in a cmd box ...
    $ net localgroup ora_dba
    ...If your OS user is in the ora_dba group the sys as sysdba password is not relevant, you can in fact type anything for a password. If you wish to connect with the sysdba privilege from a remote client, that is a bit different and requires knowing the password set in the instance password file. Which should be set the same as the system password defined in the installer, but you can change that by creating a new password file. Another slightly advanced topic.
    In Windows IMHO its better to leave the listener and database set to Manual start (in the services applet, Start/Run/services.msc) and start the listener, then the database, when its needed. At least for an XE instance, as its intended for practice and learning RDBMS management.
    Edited by: clcarter on Mar 2, 2012 6:19 PM
    fix typos

  • Connecting Nw2004s with DB2 Database on AS400

    hi,
    I have a BW Server with the following configuration
    OS: AIX 5L
    SAP System: NW2004s(BW 7.0)
    Database: Oracle 10 G R2
    I am trying to make a soruce sytem connection to the folowing datbase Server
    Database: DB2 UDB
    OS: AS400
    But as per note 523381, we have to go for a SAP Application Server. but even then the libdbsl file is not exisiting for AS400 machine.
    Please guide us of what we can do.
    Have any one faced this situation before

    Even when we go for a Windows Application Server, we could not find the DBSL file for DB2 UDB in AS400.
    We are referring to the DBSL File located in
    Support Packages and Patches> SAP NetWeaver&#61474; SAP NETWEAVER&#61474; SAP NETWEAVER 7.0 (2004S)&#61474; Entry by Component&#61474; Application Server ABAP> SAP KERNEL 7.00 64-BIT UNICODE> AIX 64bit> DB2 UDB--> lib_dbsl_138-20000977.sar
    The info page  of the DBSL file is telling that it supports only Operating System of Linux 2.6
    Please tell us where we can download the DBSL file DB2 UDB(DB4) Database in AS400 Machines.
    The info page of the lib_dbsl_138-20000977.sar is as follows
    supported environment
         database (SAP, table SVERS)   700
         operating system
         Linux 2.6
    The Details of the Source System are as follows
    Database: DB2 UDB  V5R3
    Operating System: AS400
    Please help

  • Multi WAN connection Session with Online Banking loses the connection

    Hello,
    I configured a new RV016 with ADSL ports and tested basicly the function. Everything seems to be working until one person discribed me an error while he tries to establish an online banking connection. After he enters the credentials and klick to OK, the step verifying should follow, an error message appears:
    In german:
    Ihre InternetBanking-Sitzung wurde aus Sicherheitsgründen beendet.
    Folgende Gründe können vorliegen:
    Sie haben zu lange keine Eingaben vorgenommen.
    Ihre Internet-Verbindung wurde vorzeitig beendet. Dies kann durch zu niedrig eingestellte Zeitlimite
    bei DSL-Routern oder Internet-Verbindungs-Tools auftreten.
    In English
    Your Internatbanking is due to security reason terminated.
    You have not done any enties for a long time
    Your Internet connection was terminated prematurely. This can happen if idle time configuration on the DSL router is set to low.
    A friend of me who is Firewall specialist told me that the router with multi WAN Ports and configured with load balancing automatically has these kind of problems as the packages will forwarded through multiple WAN ports and the online banking understands it as disruption of the connection.
    I set the keep connection to 5 sec and to the WAN Ports to intelegence balancer or IP groups (but not configured) , nothing solved the problem.
    Can anybody give me some advises or help me to solve this problem?
    many thanks and best regards
    Nevzat

    Sorry, but I have the exact same problem.  It is not a problem with Battlefield's servers as it is actually affecting all online games...and it is not affecting 15-20 neighbors who are FIOS customers.  When a neighbor hosts a game online, only my connection fails.  When I host a game, it fails for everyone.  When I am not in the party, nobody has a problem
    I have FIOS connected to the router via coaxial cable.  I've had FIOS for 6 years without a single problem.  Then 1 month ago my kids reported that when playing Xbox Live they are "lagging out" and having to turn the xbox on/off.  The Xbox is connected via CAT5.  Also, when a laptop, iphone or ipad are connected via wifi, the connection is lost and a reboot of the device is required.  I did factory resets and every other suggested step to no avail.  Through it all, my desktop that is connected to the router via CAT5 experienced no problems.
    I contacted VZ several times and they sent a new router.  Things looked better for 1 day, now it's actually worse.  The problems now affect the desktop's connection.  Sporadically, all internet connectivity is lost.  I then have to reboot the router.  However, after rebooting the router, any device trying to connect to the internet, via CAT5 or wifi, gets an "invalid IP address" type of error message.  I have screenshots at home which I'll add later.
    Extremely frustrating, esp when contacting customer service as they go through the same script - reboot router, send a signal.  Factory reset modem, send a signal.  After that, they have no suggestions and simply try to get you off the line

  • Connection problems with online games

    I have been having problems with all of online games while using the wireless WRT100 router. I am having problems connecting with all the players... Some players I can connect with, but some I can't. I think it might have something to do with a firewall or opening ports. Can someone please help me with this.

    are you palying computer games, or using gaming device like XBOX PS3 etc. Which games do you play? Did you try updating firmware?

  • Connection problem with new database

    Hi
    Installed new database on my windows machine successfully
    while connectting as sys user error
    ORA-12500:TNS: listner failed to start dedicated server process
    wlile connecting toad and sqlplus

    Please read the error again "listner failed to start dedicated server process". Means what, listner listened your request to connect, it tried to hand-off the connect request but due to resources problem (lack of memory) it is not possible to start server process; i.e. presumably the server is very busy at that time. If you are not able to resolve the issue, please check the unwanted services and stop them in strat-run-services.msc.
    More information can be found at below link too:
    Re: ORA-12500
    HTH
    Girish Sharma

Maybe you are looking for