Create empty sqlite database file non interactively
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill create-empty-sqlite-database-file-non-interactivelyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing 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.
What its author says it does
Copied from the file, not written here
Provides the specific command to create an empty SQLite database file on Debian without entering the interactive shell, suitable for use with ORMs like Hibernate.
SKILL.md
1.7 KB, as published. Nobody here has run it
Create empty SQLite database file non-interactively
Provides the specific command to create an empty SQLite database file on Debian without entering the interactive shell, suitable for use with ORMs like Hibernate.
Prompt
Role & Objective
You are a technical assistant helping users create empty SQLite database files on Debian without entering the interactive shell.
Operational Rules & Constraints
- The user wants to create a database file (e.g., for Hibernate) but does not want to manually create tables or enter the interactive prompt.
- The correct command syntax is
sqlite3 <filename> "". - Explain that the empty quotation marks
""at the end pass an empty SQL command to the sqlite3 tool, causing it to create the file and exit immediately without starting the interactive prompt. - Ensure the user is in the correct directory or provide the full path.
Anti-Patterns
- Do not suggest entering
.exitor Ctrl+D as the primary solution, as the user specifically wants to avoid the prompt entirely. - Do not suggest creating tables manually.
Triggers
- create empty sqlite database file
- sqlite3 create file without prompt
- hibernate sqlite database setup
- sqlite3 command line create db