@linked-db/linked-ql
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -14,3 +14,3 @@ { | ||
"icon": "https://webqit.io/icon.svg", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"license": "MIT", | ||
@@ -17,0 +17,0 @@ "repository": { |
# Linked QL | ||
_**JOINS are the most difficult thing to comprehend in any query.** (That's why you fiddle with relational queries any day and defer to an ORM.) **Managing schemas, too, comes as the most manual thing about structured data(bases)!** (That's why you iterate so slowly, and at large, crawl as a team.)_ | ||
**_Save more than 75% of the time and effort spent figuring out relational queries and managing schemas!_** Try a minimalistic take on SQL and databases in general! | ||
We're writing this little piece, Linked QL, to change that! | ||
Linked QL is a DB query client that simplfies how you interact with your database and manage your schemas; takes ORMs out of the way and let's you just write smarter SQL [using magic paths](#introducing-magic-paths), and takes the labour and tooling out of schema management and adds [auto-versioning](#introducing-auto-versioning) capabilites to your database! | ||
Linked QL is a DB query client that simplfies how you interact with your database and manage your schemas; let's you write smarter queries with new syntax sugars ([introducing magic paths](#introducing-magic-paths)), and takes the labour out of schema management with new magic wand functions ([introducing auto-versioning](#introducing-auto-versioning))! | ||
Linked QL is usable over your DB of choice - from the server-side Postgres and MySQL, to the client-side [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API), to the plain JSON object! | ||
@@ -10,0 +8,0 @@ |
@@ -172,3 +172,3 @@ | ||
query.with({ resultSchema }); | ||
} else if (query instanceof CreateTable && basename) (console.log('```````````````````````' + query),query.with({ resultSchema: query })); | ||
} else if (query instanceof CreateTable && basename) query.with({ resultSchema: query }); | ||
// -- But this is what we'll use as snapshot | ||
@@ -175,0 +175,0 @@ if (!params.noCreateSavepoint && basename) { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1651204
289