Skip to content
Open
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
7 changes: 1 addition & 6 deletions src/content/docs/get-started/bun-sql-new.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ import ConnectBun from '@mdx/get-started/postgresql/ConnectBun.mdx';
- **Bun SQL** - native bindings for working with PostgreSQL databases - [read here](https://bun.sh/docs/api/sql)
</Prerequisites>

<Callout type='error'>
In version `1.2.0`, Bun has issues with executing concurrent statements, which may lead to errors if you try to run several queries simultaneously.
We've created a [github issue](https://github.com/oven-sh/bun/issues/16774) that you can track. Once it's fixed, you should no longer encounter any such errors on Bun's SQL side
</Callout>

<FileStructure />

#### Step 1 - Install required packages
Expand Down Expand Up @@ -68,4 +63,4 @@ We've created a [github issue](https://github.com/oven-sh/bun/issues/16774) that
To run a script with `bun`, use the following command:
```bash copy
bun src/index.ts
```
```