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