Selecting database issue #186839
Replies: 3 comments 1 reply
-
|
Please provide more context! |
Beta Was this translation helpful? Give feedback.
-
|
GitHub itself does not provide a built-in database. If a tool is asking you to “select a database”, you are using either:
The spinner usually means no database server is running or configured. Quick checks
Open terminal and verify a database exists. Example (SQLite): Example (Postgres): If nothing returns, there is no database to select. If project uses SQLite Create one: Then configure your app to point to If project uses Postgres/MySQL Start the service: Postgres: MySQL: Create database: Then select Why it spins The UI is waiting for a database connection. Important GitHub ≠ database host. If you share
|
Beta Was this translation helpful? Give feedback.
-
|
Hey @NateBet22 , The error is happening because you are trying to insert a column that does not exist in According to the task description,
So in your INSERT list, the invalid column is What you should try to do:
SQL column names must match the table definition exactly. If it’s not shown in DESCRIBE, you can’t insert into it. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I am new to using GitHub. Can anyone help me with this issue? The issue is that when I type my code/query, it says I need to select a database, but when I try to select a database, it just spins on the loading screen.
Beta Was this translation helpful? Give feedback.
All reactions