示例#1
0
 /// <summary>
 /// The ExecuteCommand
 /// </summary>
 /// <param name="Cmd">The Cmd<see cref="OdbcCommand"/></param>
 /// <returns>The <see cref="int"/></returns>
 public static int ExecuteCommand(this OdbcCommand Cmd)
 {
     return(Cmd.ExecuteOdbcCommand());
 }
示例#2
0
 /// <summary>
 /// The ExecuteCommand
 /// </summary>
 /// <param name="Cmd">The Cmd<see cref="OdbcCommand"/></param>
 /// <param name="Query">The Query<see cref="string"/></param>
 /// <param name="Con">The Con<see cref="OdbcConnection"/></param>
 /// <returns>The <see cref="int"/></returns>
 public static int ExecuteCommand(this OdbcCommand Cmd, string Query, OdbcConnection Con)
 {
     return(Cmd.ExecuteOdbcCommand(Query, Con));
 }