Dbconnect
Use dbconnect.exe to validate connectivity, inspect schema, run SQL files including migration scripts, and export results. Keep invocation specifics in references/ and execute through scripts/ wrappers.From its SKILL.md
npx -y skills add fuseraft/skills --skill dbconnectAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.9 KB, 384 tokens by cl100k_base, as published. Nobody here has run it
dbconnect
When to use
- Need to test SQL Server or Oracle connectivity.
- Need to list named connections from a
.connectionsfile. - Need to inspect schema or run ad hoc SQL.
- Need to execute SQL files such as migrations.
- Need query output written to CSV.
Inputs to gather
- Target DB type:
mssqlororacle - Either
--connstring or named connection for--use - SQL text or path to
.sqlfile - Optional CSV output path
Procedure
- Read
references/dbconnect-usage.mdandreferences/dbconnect-examples.md. - Confirm
dbconnect\bin\dbconnect.exeexists. - If the user wants saved connections, run
scripts\dbconnect-list.bat. - For a connectivity check, run a trivial query like
SELECT 1using the right wrapper. - For schema inspection, use the schema query pattern in
references/dbconnect-examples.md. - For migrations or other file-based SQL, execute the
.sqlfile path through the wrapper. - If results must be preserved, pass an output CSV path.
- Return the exact command run, summarize results, and call out any prerequisite failures.
Rules
- Prefer wrapper scripts in
scripts/; do not invoke the exe manually unless troubleshooting. - Do not invent connection strings, named connections, or schema names.
- Treat destructive SQL as dangerous; require explicit user intent before running it.
- If authentication or network access fails, report the exact stderr and stop.
- Keep secrets out of logs and responses when echoing commands.
References
references/dbconnect-usage.mdreferences/dbconnect-examples.mdscripts/dbconnect-run.ps1scripts/dbconnect-run.batscripts/dbconnect-list.bat
What ships with it: 9 files
18.0 KB alongside SKILL.md, 4 of them executable
dbconnect/
- build.ps1runs986 B
- dbconnect.csproj519 B
- Program.cs12.5 KB
- README.md1.4 KB
references/
- dbconnect-examples.md1.2 KB
- dbconnect-usage.md979 B
scripts/
- dbconnect-list.batruns77 B
- dbconnect-run.batruns139 B
- dbconnect-run.ps1runs346 B