suppose there are two classes of type
function Book(isbn, title, author, publisher){ this.isbn = isbn; this.title = title; this.author = author; this.publisher = publisher; } function Publisher(title, location) { this.title = title; this.location = location; }
Is there any tool that can generate sqlite database from the code mentioned above?
source share