首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

在bcb xe中为啥Sql语句无发更新unicode数据到数据库

2013-01-06 
在bcb xe中为什么Sql语句无发更新unicode数据到数据库?Sqlupdate table set Sql+name +Name +,

在bcb xe中为什么Sql语句无发更新unicode数据到数据库?
    Sql="update table set ";
Sql+="name='" +Name +"',";
Sql+="title='" +Title +"',";
Sql+="memo='" +meme +"'";
    Sql+="where id=" +Id;
    ExecuteSql(Sql);//我自己写的函数

memo中有unicode数据,譬如韩文,更新到数据库后去却是问好?为什么?
[解决办法]
用参数代入试试。

热点排行