const store = new storeSQL('prefix_here',/*localStorage or sessionStorage*/);
let books = [{
id:1,
title: "Christine",
author: "Stephen King",
year: "1983",
pages: 503,
rating:5
}];
store.create('books',books);
store.insert('books',{
id:2,
title: "The Lord of the Rings",
author: "J.R.R. Tolkien",
year: "1955",
pages: 434,
rating: 5
});
store.select('books'); // get all data
store.select('books',['title','author','year']); // get fields
store.remove('books');// remove for key
store.remove(['books','authors']); // remove using array
store.list();
store.clearAll();