Constant DB_OPERATION_PARAMETER

Source
pub const DB_OPERATION_PARAMETER: &str = "db.operation.parameter";
Expand description

A database operation parameter, with <key> being the parameter name, and the attribute value being a string representation of the parameter value.

§Notes

If a parameter has no name and instead is referenced only by index, then [key] SHOULD be the 0-based index. If db.query.text is also captured, then db.operation.parameter.[key] SHOULD match up with the parameterized placeholders present in db.query.text.

§Examples

  • "someval"
  • "55"