#Using Drizzle Studio with Astro DB
1 messages · Page 1 of 1 (latest)
Hi @lament sun. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
I apologize, but I don't have specific information about using Drizzle Studio with Astro DB in the provided knowledge sources. While Astro DB does indeed use Drizzle ORM internally Drizzle ORM (https://docs.astro.build/en/guides/astro-db/#query-your-database), there's no mention of Drizzle Studio or how to use it with Astro DB in the given documentation.
The knowledge sources mainly focus on how to query the database using Astro DB's built-in Drizzle ORM client, including operations like select, insert, delete, and how to work with relationships and filtering. However, they don't provide information about using Drizzle Studio specifically.
If you're looking to interact with your Astro DB database, the documentation suggests using the db object imported from astro:db to perform various operations directly in your Astro project. For example:
import { db } from 'astro:db';
This allows you to query your database from Astro pages, endpoints, or actions Query your database (https://docs.astro.build/en/guides/astro-db/#query-your-database).