mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 00:04:23 +08:00
37 lines
823 B
Plaintext
37 lines
823 B
Plaintext
---
|
|
id: direct-connections
|
|
title: "Direct Connections"
|
|
description: Connecting to your Supabase database.
|
|
---
|
|
|
|
# Direct Connections
|
|
|
|
Every Supabase project provides a full Postgres database. You can connect to the database using any tool which supports Postgres.
|
|
|
|
## Finding your connection string
|
|
|
|
<Tabs
|
|
defaultActiveId="UI"
|
|
>
|
|
<TabPanel id="UI" label="UI">
|
|
|
|
```sh
|
|
1. Go to the "Settings" section.
|
|
2. Click "Database".
|
|
3. Find your Connection Info and Connection String.
|
|
```
|
|
|
|
<video width="99%" muted playsInline controls="true">
|
|
<source src="/docs/videos/postgres-connection.mp4" type="video/mp4" muted playsInline />
|
|
</video>
|
|
|
|
</TabPanel>
|
|
</Tabs>
|
|
|
|
## Resources
|
|
|
|
- [Direct Connections](/docs/guides/database/connecting/direct-connections).
|
|
- [Connection Pooling](/docs/guides/database/connecting/connection-pooling).
|
|
|
|
|