Various updates to MyGeneration
Moved ItemInsert code to ItemInsertExt.cs
This commit is contained in:
@@ -367,8 +367,14 @@
|
||||
s="Environment.UserName";
|
||||
break;
|
||||
default:
|
||||
if(IsNumeric(s))s="" + s;
|
||||
else s="";
|
||||
if(IsNumeric(s))
|
||||
s = "" + s;
|
||||
else
|
||||
{
|
||||
if(s.StartsWith("N'"))
|
||||
s = "\"" + s.Substring(2,s.Length-3) + "\"";
|
||||
}
|
||||
//else s="";
|
||||
break;
|
||||
}
|
||||
return s;
|
||||
|
Reference in New Issue
Block a user