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