DO SQLite currently only has 1 GB limit though, and doc seems to indicate that it will be raised to
DO SQLite currently only has 1 GB limit though, and doc seems to indicate that it will be raised to 10 GB when GA, which matches what D1 offers.



sam? It just says it's not available but no comments on weather there are plans or not. (https://developers.cloudflare.com/d1/configuration/data-location/#available-location-hints)workerd repo like https://github.com/cloudflare/workerd/blob/main/src/workerd/util/sqlite.c%2B%2B, but if you're new to D1, the Getting Started guide is going to the best place to start: https://developers.cloudflare.com/d1/get-started/


bigint is not a valid SQLite type and gets converted to one of the native ones, in this case INTEGER.npx wrangler d1 export dharmaradio --remote --output=dump.sql creates a dump which can't be imported again via npx wrangler d1 execute dharmaradio --remote --file=dump.sql.{"D1_RESET_DO":true} . import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
export default defineWorkersConfig({
test: {
globals: true,
poolOptions: {
workers: {
isolatedStorage: true,
wrangler: { configPath: "./wrangler.toml" },
},
},
},
});import { Hono } from 'hono'
export type Env = {
DB: D1Database
}
const app = new Hono<{ Bindings: Env}>()
app.get('/', async (c) => {
console.log(c.env.DB)
return c.text("Hello world!")
})
export default appbigintINTEGERnpx wrangler d1 export dharmaradio --remote --output=dump.sqlnpx wrangler d1 execute dharmaradio --remote --file=dump.sql{"D1_RESET_DO":true}