Can I insert records in SQLite using PhoneGap?

1

Course Environment

JDK 7u45 or higher. Android SDK 2.3.3 ADT Bundle or higher.
Apache ant 1.9.2 or higher. Node Js 0.10.24 or higher. These are descriptions of the TreinaWeb PhoneGap Mobile course.

I would like to know if by FrameWorks PhoneGap Mobile gives to program only in JavaScript, HTML5 and CSS3, Jquery inserting records in the SQLite database or it is a FrameWorks of utility for Front End as it is used in the pages of Internet being that this is facing Mobile?

I'm asking this question because I did a lot of research on how to program Jquery for Mobile and the only thing I found was a tutorial showing how to create the buttons, screens, and colors without mentioning algorithms that show how to insert, delete and update.

I know a little Android programming, and for me it's not cool to get working with XML, but if I could replace XML with JavaScript, HTML5 and CSS3, Jquery would be fantastic.

    
asked by anonymous 12.11.2014 / 17:31

2 answers

1

That's right, Phonegrap (cordova) is a framework where you can develop your cross-platform applications using javascript, html and css. The connection to the bank can be made by the javascript itself, as in this example link

Today to develop with these technologies you can use the link it runs over the cordova as well, but is based on angularjs. Very good.

    
12.11.2014 / 17:56
0

Yes, the phonegap works with SQLite, you just need to add the plugin and start using it.

In addition, with the new web API you can use the local data store and it's even easier to manipulate data in your app.

More information here .

For a description and use example, go here .

    
25.04.2015 / 07:30