Skip to content
Advertisement

Tag: node-sqlite3

SQLite3 Table Only Holds 1 Row

So, I have 2 tables, that I’ve added per the documentation, but something weird happens whenever I try to add a row to them. The data is written into the .db file, but whenever I query it, it only returns the first row. I can still update, and read these rows normally, but any data I write to them, just

SQLite table is only able to hold 1 row?

So, I have 2 tables, that I’ve added per the documentation, but something weird happens whenever I try to add a row to them. The data is written into the .db file, but whenever I query it, it only returns the first row. I can still update, and read these rows normally, but any data I write to them, just

new – TypeError: undefined is not a Function

I wrote a simple JS node file to query SQLite3 database with information I found on the Internet. However, I keep running into an error message as shown in the following image. I have checked other similar questions, but they are not as helpful. Isn’t new an operator? What am I doing Wrong? Answer According to the sqlite3 docs https://www.npmjs.com/package/sqlite3

Advertisement