コード例 #1
0
 internal static object ExecuteScalar(this SqliteCommand self, string command)
 {
     NSqlite.Log(command);
     self.CommandText = command;
     return(self.ExecuteScalar());
 }
コード例 #2
0
 internal static int ExecuteNonQuery(this SqliteCommand self, string command)
 {
     NSqlite.Log(command);
     self.CommandText = command;
     return(self.ExecuteNonQuery());
 }
コード例 #3
0
 internal static SqliteDataReader ExecuteReader(this SqliteCommand self, string command)
 {
     NSqlite.Log(command);
     self.CommandText = command;
     return(self.ExecuteReader());
 }