Svelte, Hono, and D1 database
This is my middleware:
This is how I used:
I also set like this in my
wrangler.json
file:
Why I am getting this error in my svlete project?
7 Replies
Create a file called InitDb.ts
Then in your middleware do
In your routes
I apply my middeware in the beginning with
app.use('*', dbMiddleware)
Before I define the routes
hey that is really helpful
btw, how do you handle multiple d1 db in wrangler file? I mean I kinda want to use one for prod and one for dev.
You define a single DB, when you run on dev the DB is a local sqlite in your hard drive. On the server is D1
really...?
That is so cool, I didn't know that
so, I would only need to define one db instance in wrangler file, am I right?
btw, @Bonadio how about drizzle config file?
Yes, only one db instance in wangler.
and this is my drizzle config
import type { Config } from 'drizzle-kit'
export default {
schema: './app/db/customerSchema.ts',
out: './drizzle',
} satisfies Config
At you project there will be a hidden folder .wrangler if you expand it there will be a d1 subfolder and the sqlite file will be there.
You need to run wrangler dev and access any route that make a call to the database the first time it will be blank and the call will fail but it will create the sqlite file.
them you can open it and create the tables. In dev I create my tables using drizzle generate than I copy and paste the SQL in "DB Browser Sqlite" to create the tables

okay... that is helpful