How to view data from a Cordova database?

1

I would like to know if there is a way to access and view recorded data from a database Cordova ?

I have a mobile application (Android and iOS) and I know I can view the records using log or alert but there is some way to view this data on the device either by an application or other means Native Android applications used the SQLite Database Browser but it does not work with Cordova.

Thanks for the reply and sorry for the delay! I tried to add the ip, hostname and the process of adding the pc on the smartphone is not completed. Displays error stating that it was not found. When trying to let the smartphone find some networked pc, it also does not locate.

    
asked by anonymous 11.03.2014 / 14:33

2 answers

1
  • On your Desktop, install the Adobe Edge Inspect CC extension in the Chrome Browser .

  • On your Mobile Device, install the "Edge Inspect" App

  • Place both on the same Wi-Fi network.

  • On your Mobile Device create a Connection informing the IP of your Desktop.

  • Your mobile device now talks to the Desktop and makes it easy to Debug and view assets on the Device.

    On the Adobe website it says it works with Android and iOS but I've only used it with iOS so far. You should have no issues with Android.

    Desktop should be Windows or Mac OS X. I just tested it on Mac OS X.

        
    14.03.2014 / 04:11
    0

    Google Chrome has implemented a new technology that allows you to make remote Debugging through the browser on any element that uses WebKit, for example a WebView in an App, such as Cordova uses or the browser. For this you need to have Chrome 32 on your computer and device, a usb cable and drivers for Windows users.

    To enable Remote Debugging you should go into options to develop on Android (Settings -> Developer in version 4.4.2 of Android). Then you should turn on USB Debugging.

    On your computer, access the about:inspect address in Google Chrome to enable the feature. The process is simple and should not cause problems. When everything is ready, connect your device with a USB cable. The first time the device will ask to accept an RSA key, done so you can start the remote debug by going to the Google Chrome menu - > Tools - > Inspect Devices.

        
    30.05.2014 / 05:09