pub fn simple_sql_identifier(value: &str) -> Option<String>Expand description
Returns the identifier unchanged when it is a bare Oracle identifier (only
[A-Za-z0-9_$#]), which needs no quoting. Returns None when it would
require a quoted identifier (the caller decides how to surface that). Pure
driver logic lifted out of the PyO3 shim (bead p5o).