Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/secondlifes/delphi-expert/mysql-patternsgit clone --depth 1 https://github.com/SecondLifes/delphi-expertWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/secondlifes/delphi-expert/mysql-patterns)<a href="https://agentmods.dev/rules/secondlifes/delphi-expert/mysql-patterns"><img src="https://agentmods.dev/badge/rules/secondlifes/delphi-expert/mysql-patterns.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01156 |
| Opus 5 | $0.00000 | $0.00578 |
| Sonnet 5 | $0.00000 | $0.00231 |
| Haiku 4.5 | $0.00000 | $0.00116 |
Grade A, and why
mysql-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MySQL / MariaDB Database — Rules
Use these rules when developing with MySQL or MariaDB databases via FireDAC.
Connection Required
{ Configuração base }
FConnection.DriverName := 'MySQL';
FConnection.Params.Values['Server'] := 'localhost';
FConnection.Params.Values['Port'] := '3306';
FConnection.Params.Database := 'meubanco';
FConnection.Params.UserName := 'root';
FConnection.Params.Password := 'senha';
FConnection.Params.Values['CharacterSet'] := 'utf8mb4'; //NEVER 'utf8' (only 3 bytes!)
AUTO_INCREMENT and LAST_INSERT_ID()
//⚠️ MySQL DOES NOT support RETURNING!
//Use LAST_INSERT_ID() after INSERT
LQuery.SQL.Text := 'INSERT INTO customers (name) VALUES (:name)';
LQuery.ParamByName('name').AsString := ACustomer.Name;
LQuery.ExecSQL;
//Get generated ID
LQuery.SQL.Text := 'SELECT LAST_INSERT_ID() AS new_id';
LQuery.Open;
ACustomer.Id := LQuery.FieldByName('new_id').AsInteger;
//Alternativa FireDAC:
//ACustomer.Id := FConnection.GetLastAutoGenValue('');
UPSERT — INSERT ... ON DUPLICATE KEY UPDATE
LQuery.SQL.Text :=
'INSERT INTO customers (cpf, name, email) ' +
'VALUES (:cpf, :name, :email) ' +
'ON DUPLICATE KEY UPDATE ' +
' name = VALUES(name), email = VALUES(email)';
LQuery.ExecSQL;
Native JSON (MySQL 5.7+)
{ Gravar JSON }
LQuery.ParamByName('settings').AsString := '{"theme":"dark"}';
{ Ler campo JSON — operador ->> }
LQuery.SQL.Text := 'SELECT settings->>''$.theme'' FROM ... WHERE id = :id';
Stored Procedures and Functions
| Type | Delphi Call |
|---|---|
| Procedure | CALL sp_nome(:param) + ExecSQL |
| Scalar function | SELECT fn_nome(:param) + Open |
| Procedure with result set | CALL sp_nome(:param) + Open |
Transactions
FConnection.StartTransaction;
try
FRepoA.Insert(LObjA);
FRepoB.Insert(LObjB);
FConnection.Commit;
except
FConnection.Rollback;
raise;
end;
| Isolation | FireDAC | Usage |
|---|---|---|
| Read Uncommitted | xiDirtyRead |
⚠️ Almost never |
| Read Committed | xiReadCommitted |
✅ Recommended |
| Repeatable Read | xiRepeatableRead |
InnoDB Standard |
| Serializable | xiSerializable |
Maximum consistency |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today First seen · 150 lines · 0 tokens per session scan A 167e6a89db10
mysql-patterns is a cursor rule published in the GitHub repository SecondLifes/delphi-expert (3 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,156 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other cursor rules, from other repositories
prefer-assertions-over-defensive-checks
Prefer assertions over defensive checks when data is guaranteed to be valid.
as-contract-cast-smell
// ❌ WRONG — bypasses the family ContractSerializer seam const contract = JSON.parse(raw) as Contract; const contract = JSON.parse(raw) as Contract .
no-backward-compatibility
Do not add backward-compatibility shims or migration scaffolding.
aws-rds-best-practices
AWS RDS PostgreSQL best practices - database configuration, connection management, authentication, backup, and performance optimization standards.
database
Database rules — apply when working with database schemas, queries, migrations, or ORM models.
database
Cursor rule "database" from ItamarZand88/awesome-agent-conventions, covering database best practices, prisma setup, prisma models, prisma queries and supabase setup.