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
x
45
45
1
def buy():
2
"""Buy shares of stock"""
3
if request.method == "POST":
4
# access symbol and stock
5
symbol = request.form.get("symbol")
6
stock = lookup(symbol)
7
8
# ensure valid symbol
9
if not symbol:
10
return apology("Please enter a valid symbol")
11
elif not stock: #if symbol is invalid then none will get allocated to stock, which we dont want
12
return apology("Invalid symbol")
13
14
# access the number of shares and check for an integer
15
try:
16
shares = int(request.form.get("shares"))
17
except:
18
return apology("Shares must be an integer")
19
20
# if shares are negative
21
if shares <= 0:
22
return apology("Shares must be a positive integer")
23
24
25
user_id = session["user_id"]
26
cash = db.execute("SELECT cash FROM users WHERE id = ?", user_id)[0]["cash"]
27
28
stock_name = stock["name"]
29
stock_price = stock["price"]
30
total_price = stock_price * shares
31
32
# check for sufficient funds
33
if total_price > cash:
34
return apology("Insufficient funds.")
35
else:
36
db.execute("UPDATE users SET cash = ? WHERE id = ?", cash - total_price, user_id)
37
db.execute("INSERT INTO transactions (user_id, name, shares, price, type, symbol) VALUES ( ?, ?, ?, ?, ?, ?",
38
user_id, stock_name, shares, stock_price, 'buy', symbol)
39
40
flash("Bought!")
41
return redirect('/')
42
43
else:
44
return render_template("buy.html")
45
Following is my HTML code:
JavaScript
1
18
18
1
{% extends "layout.html" %}
2
3
{% block title %}
4
buy
5
{% endblock %}
6
7
{% block main %}
8
<form action="/buy" method="post">
9
<div class="form-group">
10
<input autocomplete="off" autofocus class="form-control" name="symbol" placeholder="symbol" type="text">
11
</div>
12
<div class="form-group">
13
<input class="form-control" name="shares" placeholder="shares" type="text">
14
</div>
15
<button class="btn btn-primary" type="submit">Buy</button>
16
</form>
17
{% endblock %}
18
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
1
3
1
db.execute("INSERT INTO transactions (user_id, name, shares, price, type, symbol) VALUES ( ?, ?, ?, ?, ?, ?",
2
user_id, stock_name, shares, stock_price, 'buy', symbol)
3
Could it be that this statement needs to have a closing round bracket in VALUES?
JavaScript
1
3
1
db.execute("INSERT INTO transactions (user_id, name, shares, price, type, symbol) VALUES ( ?, ?, ?, ?, ?, ?);",
2
user_id, stock_name, shares, stock_price, 'buy', symbol)
3