public bool IsValueNeedQuoted(Type type) { return(MySQLLocalism.IsValueNeedQuoted(type)); }
public string?GetDbValueStatement(object?value, bool needQuoted) { return(MySQLLocalism.GetDbValueStatement(value, needQuoted)); }
public string GetDbTypeStatement(Type type) { return(MySQLLocalism.GetDbTypeStatement(type)); }
public DbType GetDbType(Type type) { return(MySQLLocalism.GetDbType(type)); }
public string GetReservedStatement(string name) { return(MySQLLocalism.GetReserved(name)); }
public string GetParameterizedStatement(string name) { return(MySQLLocalism.GetParameterized(name)); }