Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mdx/get-started/mysql/ConnectMySQL.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Callout from '@mdx/Callout.astro';
import CodeTabs from "@mdx/CodeTabs.astro";

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

<CodeTabs items={['mysql2', 'mysql2 with config', 'your mysql2 driver']}>
```typescript copy
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/mysql/ConnectPlanetScale.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy
import { drizzle } from "drizzle-orm/planetscale-serverless";
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/mysql/ConnectTiDB.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy
import { drizzle } from 'drizzle-orm/tidb-serverless';
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectNeon.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Callout from '@mdx/Callout.astro';
import CodeTabs from "@mdx/CodeTabs.astro";
import Section from "@mdx/Section.astro";

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript
import { drizzle } from 'drizzle-orm/neon-http';
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectNile.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Callout from '@mdx/Callout.astro';
import CodeTabs from "@mdx/CodeTabs.astro";

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

<CodeTabs items={["node-postgres", "node-postgres with config", "your node-postgres driver"]}>
```typescript copy
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectPgLite.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy
import { drizzle } from 'drizzle-orm/pglite';
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectPostgreSQL.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import CodeTabs from "@mdx/CodeTabs.astro";

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

<CodeTabs items={["node-postgres", "node-postgres with config", "your node-postgres driver"]}>
```typescript copy
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectSupabase.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Callout from '@mdx/Callout.astro';

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy filename="index.ts"
import { drizzle } from 'drizzle-orm'
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectVercel.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy
import { drizzle } from 'drizzle-orm/vercel-postgres';
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/postgresql/ConnectXata.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

```typescript copy"
import { drizzle } from 'drizzle-orm/xata-http';
Expand Down
2 changes: 1 addition & 1 deletion src/mdx/get-started/singlestore/ConnectSingleStore.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Callout from '@mdx/Callout.astro';
import CodeTabs from "@mdx/CodeTabs.astro";

Create a `index.ts` file in the `src/db` directory and initialize the connection:
Create a `index.ts` file in the `src` directory and initialize the connection:

<CodeTabs items={['mysql2', 'mysql2 with config', 'your mysql2 driver']}>
```typescript copy
Expand Down