# How to Find Your Supabase Database Connection Info
## Method 1: Supabase Dashboard (Recommended)
1. Go to your Supabase Dashboard: https://supabase.com/dashboard
2. Select your project: `sitomhzoqsoqpkaglxzg`
3. Navigate to **Settings** (gear icon in the left sidebar)
4. Click on **Database** in the settings menu
5. Scroll down to **Connection string** section
6. You'll see multiple connection strings:
- **Direct connection**: Uses port `5432` (for direct PostgreSQL)
- **Connection pooling**: Uses port `6543` (for connection pooler)
- **Session mode**: Uses port `6543`
- **Transaction mode**: Uses port `6543`
## What You Need:
1. **Database Password**:
- In the Database settings page
- Look for "Database password" section
- You can reset it if you don't remember it
2. **Connection Details**:
- Host: `db.sitomhzoqsoqpkaglxzg.supabase.co` (from the connection string)
- Port: `5432` (direct) or `6543` (pooler)
- Database: Usually `postgres`
- User: Usually `postgres`
## Quick Access Link:
Your Supabase project settings:
https://supabase.com/dashboard/project/sitomhzoqsoqpkaglxzg/settings/database
## Connection String Format:
**Direct Connection (Port 5432):**
```
postgresql://postgres:[YOUR-PASSWORD]@db.sitomhzoqsoqpkaglxzg.supabase.co:5432/postgres
```
**Connection Pooler (Port 6543):**
```
postgresql://postgres:[YOUR-PASSWORD]@db.sitomhzoqsoqpkaglxzg.supabase.co:6543/postgres
```
## Recommendation:
- Use **port 6543** (connection pooler) for better performance and connection management
- The pooler handles multiple connections more efficiently