We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3180560 commit 138afb9Copy full SHA for 138afb9
1 file changed
sqlx-core/src/odbc/connection/odbc_bridge.rs
@@ -97,15 +97,15 @@ fn extract_rows_affected<S: AsStatementRef>(stmt: &mut S) -> u64 {
97
let count = match stmt_ref.row_count().into_result(&stmt_ref) {
98
Ok(count) => count,
99
Err(e) => {
100
- log::warn!("Failed to get row count: {}", e);
+ log::debug!("No row count available: {}", e);
101
return 0;
102
}
103
};
104
105
match u64::try_from(count) {
106
107
108
+ log::warn!("Invalid row count: {}", e);
109
0
110
111
0 commit comments