Do you have a link for info on developer week? I can’t find anything about it.
Do you have a link for info on developer week? I can’t find anything about it.


D1 Read token API token and then any writes would fail? Doesn't seem like there's a way to do this through workers APIconst db = drizzle({ connection: process.env.DATABASE_URL, casing: 'snake_case' })Each D1 database can store up to 10 GB of data, and you can create up to thousands of separate D1 databases. This allows you to split a single monolithic database into multiple, smaller databases, thereby isolating application data by user, customer, or tenant
// Row definition
type OrderRow = {
Id: string;
CustomerName: string;
OrderDate: number;
};
// Elsewhere in your application
const result = await env.MY_DB.prepare(
"SELECT Id, CustomerName, OrderDate FROM [Order] ORDER BY ShippedDate DESC LIMIT 100",
).run<OrderRow>();