mysql-patterns

mysql-patterns is a cursor rule for Cursor from SecondLifes/delphi-expert. It costs 0 tokens per session (1,156 once invoked), scanned A, original, MIT.

MySQL/MariaDB Database defaults — FireDAC connection, AUTOINCREMENT, LASTINSERTID(), UPSERT, JSON, stored procedures, transactions.

Cursor rule for Cursor

Install

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.

agentmods
npx agentmods add rules/secondlifes/delphi-expert/mysql-patterns
Clone the repo
git clone --depth 1 https://github.com/SecondLifes/delphi-expert

Made for: Cursor.

Wrote 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.

agentmods badge for mysql-patterns

README.md
[![agentmods](https://agentmods.dev/badge/rules/secondlifes/delphi-expert/mysql-patterns.svg)](https://agentmods.dev/rules/secondlifes/delphi-expert/mysql-patterns)
Your own site
<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>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,156 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured today against content hash 167e6a89db10, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.cursor/rules/mysql-patterns.mdc · 150 lines

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

Read the full file on GitHub · 150 lines

Changes

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.

  1. today First seen · 150 lines · 0 tokens per session scan A 167e6a89db10

Subscribe to this mod's changes

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.