You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
416 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections;
//该源码首发自www.51aspx.com(ax)
namespace Efficiency.Utility
{
//对传递过来的字符串进行处理的类
public class SQLString
{
//公有静态方法将SQL字符串里面的(')转换成('')
public static String GetSafeSqlString(String XStr)
{
return XStr.Replace("'", "''");
}