I am trying to execute select query to read data from sqlite tables. but while reading data all the column names are coming in lower case in ios but its coming pascal case in android.
query = select * from testtable;
this.sqlite.query(query, values);
I am trying to execute select query to read data from sqlite tables. but while reading data all the column names are coming in lower case in ios but its coming pascal case in android.
query = select * from testtable; this.sqlite.query(query, values);
query result- (ios) id, firstname, lastname, address, mobilenumber
query result- (android) ID, FirstName, LastName, Address, MobileNumber
Please help me out to get same column name from sqlite table. Thanks in advance