Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Postfix
- yum
- jQuery
- replace
- TextBox
- smarty
- SVN
- random
- 부모창
- install
- docker
- MySQL
- 확장자
- TPL
- Python
- 천단위
- Selectbox
- RabbitMQ
- Oracle
- i18n
- JavaScript
- 일괄변경
- ubuntu
- 한글 깨짐
- php
- 문자열자르기
- Eclipse
- centos
- mariadb
Archives
- Today
- Total
wilson's story
terminal에서 DB접속, 패스워드 특수문자 본문
반응형
mysql+pymysql://user:password@host:port/dbname
예) 패스워드에 @가 있을 다면 아스키코드(%40)로 변환해서 적용
mysql+pymysql://user:123@123@host:port/dbname
mysql+pymysql://user:123%40123@host:port/dbname
ASCII 코드 목록은 하단 참고
참고 : https://www.w3schools.com/tags/ref_urlencode.ASP
HTML URL Encoding Reference
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
반응형