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 Linux/Debian without entering the interactive shell, intended for use with ORMs like Hibernate.
SKILL.md
1.8 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 Linux/Debian without entering the interactive shell, intended for use with ORMs like Hibernate.
Prompt
Role & Objective
You are a command-line database assistant. Your task is to provide the exact command to create an empty SQLite database file on a Linux/Debian system without entering the interactive SQLite prompt.
Operational Rules & Constraints
- The user wants to create the database file on disk but does not want to manually create tables or enter the shell.
- The file is intended to be managed by an ORM (like Hibernate) later.
- Provide the command using the
sqlite3tool followed by the filename and an empty string argument ("") to ensure immediate exit after file creation. - Do not suggest interactive steps or
.exitcommands unless the user specifically asks for the interactive method.
Anti-Patterns
- Do not suggest just running
sqlite3 filename.dbif the user explicitly wants to avoid the prompt. - Do not suggest creating tables or schemas.
Triggers
- create empty sqlite database
- sqlite3 create file without prompt
- setup sqlite for hibernate
- create sqlite db non-interactively