exercism/sqlite/hello-world/HELP.md

2 KiB

Help

Running the tests

Navigate to the directory containing the appropriate ${slug}_test.sql file, where ${slug} is the name of the exercise, using hyphens instead of spaces and all lowercase (e.g. hello-world_test.sql for the Hello World exercise).

sqlite3 -bail < ${slug}_test.sql

You can use SELECT statements for debugging. The output will be forwarded to user_output.md and shown in the web-editor if tests fail.

You can find more information in the sqlite track docs about testing.

Submitting your solution

You can submit your solution using the exercism submit hello-world.sql command. This command will upload your solution to the Exercism website and print the solution page's URL.

It's possible to submit an incomplete solution which allows you to:

  • See how others have completed the exercise
  • Request help from a mentor

Need to get help?

If you'd like help solving the exercise, check the following pages:

Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.

If you're stuck on something, it may help to look at some of the available resources or ask The Exercism Community on Discord.

Additionally, StackOverflow is a good spot to search for your problem/question to see if it has been answered already. If not, you can always ask or answer someone else's question.