[求助]这个有什么用?
这里有c#的2段代码。 public static string ToSQL(string Param, FieldTypes Type) { if (Param == null || Param.Length == 0) { return "Null"; } else { string str = Quote(Param); if (Type == FieldTypes.Number) { return str.Replace(',','.'); } else { return "\'" + str + "\'"; } } }
public static string ToSQL(string str) { return "\'" + str + "\'"; } public static string Quote(string Param) { if (Param == null || Param.Length == 0) { return ""; } else { return Param.Replace("'","''"); } } 我是一个初学者,请各位帮帮忙,看看是什么意思!