Documentation Index
Fetch the complete documentation index at: https://docs.btsscorp.com/llms.txt
Use this file to discover all available pages before exploring further.
Validation rules
- Read-only guard: Only
SELECTstatements are allowed; DML/DDL is blocked. - Injection protection: Patterns resembling unsafe concatenation or execution are rejected.
- Bind variables: Must use
:namesyntax; invalid placeholders are flagged.
Common false positives
- Colons inside quoted strings (e.g.,
'http://example.com:8080'). - Commented-out DML statements in multi-statement scripts.
- Bind variables inside complex string concatenations.
Fixes
- Ensure non-SELECT statements are removed or commented out.
- Escape or move colons that are part of literal strings.
- Keep bind variable names alphanumeric and consistent (
:startDate).

