2 implementations of ExecuteNonQuery
System.Data.Common (1)
System\Data\Common\DbCommand.cs (1)
109public abstract int ExecuteNonQuery();
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
50public 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)
1505int recordsAffected = dataCommand.ExecuteNonQuery();