2 implementations of ExecuteNonQuery
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
109
public abstract int
ExecuteNonQuery
();
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
50
public override int
ExecuteNonQuery
() { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
1 reference to ExecuteNonQuery
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
1505
int recordsAffected = dataCommand.
ExecuteNonQuery
();