mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* ✂️
* Add the slow version
* draw the rest of the owl
* Fix crash when allocating lots of memory
* [Bun.Transipiler] Support passing objects
* [JS Parser] Support passing objects to macros via Bun.Transpiler
* Update JSSQLStatement.cpp
* Embed SQLite
* Add SQLite to Dockerfile
* [sqlite] Add quick one-off queries without creating a whole object
* [sqlite] Add `columnsCount`, rename raw() to `values()`, remove `rebind`
* Implement `bun:sqlite`
* return null
* Fix updating query
* Update bun.d.ts
* more tests
* Support variadic arguments, write tests and add types
* Update sqlite.d.ts
* Update sqlite.d.ts
* latest
* Implement `Database.loadExtension` and `Database.setCustomSQLite`
* Support `require.resolve`
* [napi] Improve string performance
* [bun.js] Support some of `node:module`
* another test
* [sqlite] Support serialize & deserialize
* [`bun:ffi`] Implement `CFunction` and `linkSymbols`
* [bun.js] Fix crash in `Buffer.from`
* Update sqlite.test.js
* Document linkSymbols
* docs
* Update README.md
27 lines
516 B
JavaScript
27 lines
516 B
JavaScript
import { bench, run } from "mitata";
|
|
import { Database } from "sqlite";
|
|
const db = Database.open("/tmp/northwind.sqlite");
|
|
|
|
{
|
|
const sql = db.prepare(`SELECT * FROM "Order"`);
|
|
bench('SELECT * FROM "Order"', () => {
|
|
sql.all();
|
|
});
|
|
}
|
|
|
|
{
|
|
const sql = db.prepare(`SELECT * FROM "Product"`);
|
|
bench('SELECT * FROM "Product"', () => {
|
|
sql.all();
|
|
});
|
|
}
|
|
|
|
{
|
|
const sql = db.prepare(`SELECT * FROM "OrderDetail"`);
|
|
bench('SELECT * FROM "OrderDetail"', () => {
|
|
sql.all();
|
|
});
|
|
}
|
|
|
|
run({ json: false });
|