วิธีแก้ There is no application installed for executable files
Monthly Archives: January 2019
การติดตั้ง XAMPP PHP 7.3.0 บน Linux CentOS 7
การติดตั้ง XAMPP PHP 7.3.0 บน Linux CentOS 7
การตั้งค่า Remote Access Mysql บน Centos7 Linux
การตั้งค่า Remote Access Mysql บน Centos7 Linux ได้
Setup Mysql Remote Access for Linux Centos7
cannot connect mysql server 10061 centos 7
- sudo firewall-cmd --list-all
- sudo firewall-cmd --permanent --add-service=mysql
- sudo firewall-cmd --reload
- sudo firewall-cmd --list-all
- sudo /opt/lampp/lampp restart
การเชื่อมต่อ Django กับ Mysql
การเชื่อมต่อ Django กับ Mysql
- pip install mysqlclient
- python manage.py makemigrations
- python manage.py migrate
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'django_db',
'USER': 'root',
'PASSWORD': '123456',
'HOST': '127.0.0.1',
'PORT': '3306',
}
}
TIME_ZONE = 'Asia/Bangkok'
การติดตั้ง Python Django Framework ด้วย Pycharm
การติดตั้ง Python Django Framework ด้วย Pycharm
การติดตั้ง Python Package ด้วย Pycharm
การติดตั้ง Python Package ด้วย Pycharm How to Install Python PIP Packages in PyCharm
การเชื่อมต่อ Python3 กับ ฐานข้อมูล Mysql
import cymysql
conn = cymysql.connect(host='127.0.0.1',
user='root', passwd='123456', db='db2012')
cur = conn.cursor()
cur.execute('SELECT * FROM list')
for r in cur.fetchall():
print(r[0], r[1])
การเชื่อมต่อ Python3 กับ ฐานข้อมูล Mysql ด้วย cymysql
python mysql example
ตั้งค่า Python Interpreter ใน Pycharm
ตั้งค่า Python Interpreter ใน Pycharm
การติดตั้ง python 3.7 บน Windows
การติดตั้ง python 3.7 บน Windows