当前位置: 技术问答>java相关
关于SQL语句的问题
来源: 互联网 发布时间:2015-05-01
本文导语: 我要把文章用SQL语句插入或修改到数据库中,但是当文章中有包含单引号“'”这个字符时,会出现SQL异常,这是SQL语句的错误。要怎么解决这个问题呢? | 替换就可以了给段代码先: public St...
我要把文章用SQL语句插入或修改到数据库中,但是当文章中有包含单引号“'”这个字符时,会出现SQL异常,这是SQL语句的错误。要怎么解决这个问题呢?
|
替换就可以了给段代码先:
public String fixString (String instring)
{
int lIndex = 0;
char lChar ;
StringBuffer lStrbuff;
if (instring == null)
return "";
lStrbuff = new StringBuffer(instring);
while (lIndex
public String fixString (String instring)
{
int lIndex = 0;
char lChar ;
StringBuffer lStrbuff;
if (instring == null)
return "";
lStrbuff = new StringBuffer(instring);
while (lIndex