데이터베이스 연결 실패
{{ connectionError }}
// 루트 .env 설정 상태 확인:
DB_HOST: {{ configHint?.host || 'localhost' }}
DB_PORT: {{ configHint?.port || '3306' }}
DB_USER: {{ configHint?.user || 'test2' }}
DB_PASS: {{ configHint?.hasPass ? '설정됨 (****)' : '비어있음 (비밀번호를 .env에 입력해주세요)' }}
📁
선택된 테이블이 없습니다
좌측 목록에서 탐색할 테이블을 선택해주세요.
{{ selectedDb }}.
{{ selectedTable }}
{{ currentTableInfo.comment }}
엔진: {{ currentTableInfo?.engine || 'InnoDB' }}
전체 행: {{ totalRecords }}
용량: {{ currentTableInfo?.total_size || '0 B' }}
대조: {{ currentTableInfo?.collation || 'utf8mb4' }}
데이터를 불러오는 중입니다...
테이블에 저장된 데이터가 없습니다.
| # |
{{ col.field }}
({{ col.type }})
|
|---|---|
| {{ (currentPage - 1) * limit + rIdx + 1 }} | NULL {{ row[col.field] }} |
페이지 {{ currentPage }} / {{ totalPages }} (총 {{ totalRecords }}건)
컬럼 명세 (Columns)
| Field (컬럼명) | Type (타입) | Null | Key | Default | Extra | Comment (설명) |
|---|---|---|---|---|---|---|
| {{ col.field }} | {{ col.type }} | {{ col.null ? 'YES' : 'NO' }} | PK UNI INDEX - | {{ col.default !== null ? col.default : 'NULL' }} | {{ col.extra || '-' }} | {{ col.comment || '-' }} |
인덱스 명세 (Indexes)
| Key Name | Column Name | Type | Index Type |
|---|---|---|---|
| {{ idx.key_name }} | {{ idx.column_name }} | {{ idx.non_unique }} | {{ idx.index_type }} |
MySQL 서버 환경 정보
MySQL 서버 버전
{{ serverInfo.version }}
접속 호스트 & 포트
{{ serverInfo.host }}:{{ serverInfo.port }}
인증 계정 (Current User)
{{ serverInfo.user }}
기본 문자셋 (Charset)
{{ serverInfo.charset }}