Sqllite database size limit

I’m using the sqllite cordova plugin. I use this code to initilize my db.

this.mydb = win.sqlitePlugin.openDatabase({
name: this.DB_NAME,
location: 2,
createFromLocation: 0
});

How I can set/detect the size of the database? How much data I can store?