Hiren's Technical Blog: Use existing Sqlite database in Android
Hello, Since last few days, I have been working with android and I am very excited about it. This is my first blog on Android and many more is to come. Normally Sqlite database is used with Android...
View ArticleCode4ReferenceHow to access SQLite database on Android
As we know that Android has inbuilt database called SQLite where application can store their data. SQLite was mainly developed for embedded devices. I am not going to discuss here about SQLite database...
View ArticleLocation tracker in Android using GPS positioning and SQLite
Introduction Android is an Open source software stack which has gained market in leaps and bounce. This includes operating system, middleware and key applications. The advantage android brings along...
View ArticleMaking easier sqlite3 connections in Android: ORMLite | Javier Manzano's Blog
In one of my last articles, one of my readers asked about some ORM solution to access the sqlite3 database in Android. Due to I ignore it, I began to investigate it One of the solutions I reached was...
View ArticleJava Padawan on J2ME and Android: Android SQLite Primary Key Auto Increment
WRONG : CREATE TABLE PERSON (ID INTEGER PRIMARY KEY AUTOINCREMENT, FIRSTNAME TEXT, LASTNAME TEXT)
View ArticleImprove your life Through Science and Art: AIR: Adobe AIR with SQLite database
An AIR application that doesn’t need to store data on your computer is extremely rare. That is why I have created a basic application that should help you understand and learn how you can store data in...
View ArticleImprove your life Through Science and Art: Database: SQLite connection from Java
Class.forName("org.sqlite.JDBC") ;connection = DriverManager.getConnection("jdbc:sqlite:D:\testdb.db ");
View Article