pub fn parse_ora_code(message: &str) -> Option<i32>
Parse the leading ORA-NNNNN code from an Oracle error message, if present.
ORA-NNNNN
"ORA-00942: table or view does not exist" → Some(942).
"ORA-00942: table or view does not exist"
Some(942)