Skip to content
Advertisement

Runtime Error: Incomplete output while executing buy function for cs50 finance

While all the checks work, (empty symbol, invalid number of shares…), the function fails to actually purchase the stocks. It returns an internal server error. Following is the log output:

File “/usr/local/lib/python3.9/site-packages/cs50/sql.py”, line 71, in _execute raise RuntimeError(exc.orig) from None RuntimeError: incomplete input

Following is my buy function:

JavaScript

Following is my HTML code:

JavaScript

Following is my SQL table:

field type
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
name TEXT NOT NULL,
shares INTEGER NOT NULL,
price NUMERIC NOT NULL,
type TEXT NOT NULL,
symbol TEXT NOT NULL,
time TIMESTAMP DEFAULT CURRENT_TIMESTAMP
FOREIGN KEY(user_id) REFERENCES users(id)

Advertisement

Answer

JavaScript

Could it be that this statement needs to have a closing round bracket in VALUES?

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement