DAL (Data Access Layer) - a proxy for SQL databases with MongoDB inspired query interface
Find a file
2024-08-21 01:12:40 +02:00
binding [chore] update revisions 2024-08-21 01:11:14 +02:00
dal [fix] add msg field for query resut 2024-08-21 01:03:28 +02:00
doc [feat] sqlite server facade 2024-08-17 18:53:58 +02:00
pkg [chore] update revisions 2024-08-21 01:09:08 +02:00
.gitignore [feat] test nodejs bindings 2024-08-20 03:36:41 +02:00
binding.gyp [feat] nodejs bindings 2024-08-20 13:09:35 +02:00
bun.lockb [chore] preinstall,postinstall 2024-08-20 19:23:09 +02:00
go.mod [chore] update revisions 2024-08-21 01:12:40 +02:00
go.sum [chore] update revisions 2024-08-21 01:12:40 +02:00
main.go [ref] mod paths 2024-08-20 19:34:01 +02:00
package.json [chore] preinstall,postinstall 2024-08-20 19:23:09 +02:00
README.md [doc] initial docs 2024-08-16 06:18:45 +02:00
tsconfig.json [chore] preinstall,postinstall 2024-08-20 19:23:09 +02:00

DAL [WIP]

Data Accees Layer for SQL databases written in Go.

NodeJs Client

Mongodb inspired query interface:

const query = Db.In("users")
  .Find({
    fullname: { $glob: "*son" },
  })
  .Query();

// Result:
console.log(users)[
  ({ id: 25, fullname: "John Menson" }, { id: 76, fullname: "John Johnson" })
];