Hello friends help me

sqlite how to show records.

Regards
pasupathi

private db: SQLiteObject;
getData() {
     var sql = "SELECT * FROM user";
     
     this.db.executeSql(sql, {})
         .then((result) => {
             this.data += JSON.stringify(result);   
         })

         .catch(e => console.log(JSON.stringify(e)));
 }