phpstudy搭建本地环境连接本地数据库的方法

https://blog.csdn.net/Xiao_peng117/article/details/83034858
phpstudy数据库创建好之后,

默认用户名:root

默认密码:root

主机名:localhost

端口:3306

demo:

本地浏览器打开中文乱码,上传到服务器又正常解决方案:在PHP文件开头添加下面这句设置字符集

header("content-type:text/html;charset=utf-8");

python

print(-1)
import pymysql
coon = pymysql.connect(
    host = 'localhost',
    user = 'root',
    passwd = 'root',
    port = 3306,
    db = 'new',
    charset = 'utf8'
    #port必须写int类型
    #charset必须写utf8,不能写utf-8
)
print(0)
cur = coon.cursor()  #建立游标
cur.execute("select * from user")  #查询数据
res = cur.fetchall()    #获取结果
print(res)
cur.close()     #关闭游标
coon.close()    #关闭连接
print(1)
#---------------------------------------------------------------------------
#如果是插入数据,则要commit一下,把第9行换成以下两行
# cur.execute('insert into stu(name,sex) VALUE ("pzp","man");')
# coon.commit()

你可能感兴趣的:(数据库,python)