New record button missing
(1) By anonymous on 2022-02-17 17:43:35 [link] [source]
I am trying to learn my way around SQL and SQLite, but when I attempt to create a database and add records to it I simply do not have that function available. Am I glossing over something? Doesn't make sense. I create a database, add a table, and when it comes to adding records I simply do not have feature. As in the button does not even appear where it should be. I can't get it to add records manually nor through executing SQL code.
https://imgur.com/a/FyylIiI
(2) By Larry Brasfield (larrybr) on 2022-02-17 17:46:32 in reply to 1 [link] [source]
SQLite does not have buttons, never has had buttons, and is not claimed to have buttons. Your "button missing" problem should be taken to the creator(s) of whatever application you think is missing its button(s).
(3) By anonymous on 2022-02-17 17:53:11 in reply to 2 [link] [source]
Ah yes, library vs program.. You're right thanks.
(4) By Ryan Smith (cuz) on 2022-02-17 20:53:18 in reply to 1 [source]
The image you linked looks like it is DB Browser for SQLite - which itself is one of the many SQLite DB Admin utilities which we do not typically discuss here - this is mostly for discussions of the SQLite engine core.
That said, I'm sure you can find some help on the DB Browser web/forum.
Other than that, I can tell you that if you find the SQL input Tab/Window in that program, then write an INSERT query into that table and run it, it's bound to have good working results.
To see how the SQLite "INSERT" query works, you can refer to this documentation page: sqlite.org/lang_insert.html
Good luck!