php中施行包含中文字符的建表语句失败
程序员文章站
2022-05-04 22:13:56
...
php中执行包含中文字符的建表语句失败
$conn = mysql_connect("localhost","root","");
if($conn){
mysql_select_db("test",$conn);
$sql = "create table user
(
id int(5) not null auto_increment primary key,
name char(10) not null default '',
password char(12) not null default '',
age int(3) not null default 0,
sex char(10) not null default '男',
mail char(50) not null default '',
degree char(10) not null default ''
);";
$do = mysql_query($sql,$conn);
if($do){
echo "操作成功";
}
else{
echo "操作失败";
}
}else{
echo "连接服务器出错";
}
执行以上代码,返回“操作失败”。自己测试了一下,发现是中文字符的问题,也就是sex字段默认值为‘男’这里出了问题。但是如果把$sql里的语句单独在cmd里运行的话,可以成功的创建表。
不知道是怎么回事,望高手解答。
$conn = mysql_connect("localhost","root","");
if($conn){
mysql_select_db("test",$conn);
$sql = "create table user
(
id int(5) not null auto_increment primary key,
name char(10) not null default '',
password char(12) not null default '',
age int(3) not null default 0,
sex char(10) not null default '男',
mail char(50) not null default '',
degree char(10) not null default ''
);";
$do = mysql_query($sql,$conn);
if($do){
echo "操作成功";
}
else{
echo "操作失败";
}
}else{
echo "连接服务器出错";
}
执行以上代码,返回“操作失败”。自己测试了一下,发现是中文字符的问题,也就是sex字段默认值为‘男’这里出了问题。但是如果把$sql里的语句单独在cmd里运行的话,可以成功的创建表。
不知道是怎么回事,望高手解答。
PHP
MySQL
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: 设计模式-建造者模式
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论