-
Notifications
You must be signed in to change notification settings - Fork 2
Home
DAIKOZ edited this page Feb 20, 2026
·
18 revisions
SQLWrapper is a tool that simplifies creating code wrappers for SQL queries. It supports various SQL databases, checks syntax and performance, and generates code directly from queries and database structures.
flowchart LR
subgraph database
DB[(Database)] --> DBCMD
DBCMD{{database}} ==> DBXML>cached XML database file]
end
subgraph helper
DBXML --> HELPERCMD
XLSTH[XSLT] --> HELPERCMD
HELPERCMD ==> HELPERSRC>Helper source code]
end
SQLWrapper -.-> WRAPPERCMD{{wrapper}}
subgraph wrapper
SQL[SQL Queries] --> WRAPPERCMD
XLSTW[XSLT] --> WRAPPERCMD
WRAPPERCMD ==> WRAPPERSRC>Wrapper source code]
DBXML --> WRAPPERCMD
end
SQLWrapper -..-> DBCMD
SQLWrapper -.-> HELPERCMD{{helper}}