i tried to implement Remember me functionality in my app. if in my database value already there,it’s display and data not available in database,inserted it.
Problem is that this functionality worked in browser properly when i run in android device i get error. In database data not stored and tried to access it gives undefined error.
Code that i used
let options = {
name: this.dbName, // the name of the database
backupFlag: SqlStorage.BACKUP_LOCAL, // where to store the file
existingDatabase: false // load this as an existing database
};
this.storage = new Storage(SqlStorage, options);
Functions for update or insert data.
public saveLoginDetail(table: string, username:string, password:string){
var sql = 'INSERT INTO ' + table + ' VALUES ( ?, ?)';
return this.storage.query(sql,[username,password]);
}
public updateLoginDetail(table: string, username:string, password:string){
var sql = 'UPDATE '+ table +' SET '+this.COLUMN_userId +' = ?,'+ this.COLUMN_password+' = ?';
return this.storage.query(sql,[username,password]);
}
Below function tried to access database value
this.db.getData(this.db.sqtable_UserInfo).then(data => {
console.log('Done - insert1',data.res.rows[0]); <-- undefined error
},err => AllFunctions.doAlert('Error Occured - 108',this.navController));