You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.
In my ionic app, i am logging the data inside every functions/implementation, Now the issue is , to store this log is i am using latest version of native sqlite plugin, it is working fine for default location, if i change the location path, by giving internal sd card i am gettin error as Valid IOS data base location could not be determined in open database call
code snippet
my path, where db is to be created
/sdcard/ReportLogs/
sqlite.create({name: dbName, location: "/sdcard/ReportLogs/"}).then((db: SQLiteObject) => {
db.executeSql(query, [])
.then(res => {
resolve(res);
console.log('Executed SQL')
})
.catch(e =>{
reject(e);
console.log(e)}
);
});
The text was updated successfully, but these errors were encountered:
Hi
In my ionic app, i am logging the data inside every functions/implementation, Now the issue is , to store this log is i am using latest version of native sqlite plugin, it is working fine for default location, if i change the location path, by giving internal sd card i am gettin error as
Valid IOS data base location could not be determined in open database call
code snippet
my path, where db is to be created
/sdcard/ReportLogs/
sqlite.create({name: dbName, location: "/sdcard/ReportLogs/"}).then((db: SQLiteObject) => {
db.executeSql(query, [])
.then(res => {
resolve(res);
console.log('Executed SQL')
})
.catch(e =>{
reject(e);
console.log(e)}
);
The text was updated successfully, but these errors were encountered: