예제 #1
0
 public bool IsValueNeedQuoted(Type type)
 {
     return(MySQLLocalism.IsValueNeedQuoted(type));
 }
예제 #2
0
 public string?GetDbValueStatement(object?value, bool needQuoted)
 {
     return(MySQLLocalism.GetDbValueStatement(value, needQuoted));
 }
예제 #3
0
 public string GetDbTypeStatement(Type type)
 {
     return(MySQLLocalism.GetDbTypeStatement(type));
 }
예제 #4
0
 public DbType GetDbType(Type type)
 {
     return(MySQLLocalism.GetDbType(type));
 }
예제 #5
0
 public string GetReservedStatement(string name)
 {
     return(MySQLLocalism.GetReserved(name));
 }
예제 #6
0
 public string GetParameterizedStatement(string name)
 {
     return(MySQLLocalism.GetParameterized(name));
 }