Table
c.execute("CREATE TABLE project (
id INTEGER PRIMARY KEY AUTOINCREMENT,
content TEXT,
postdate TIMESTAMP NOT NULL default CURRENT_TIMESTAMP)
")
te = "testing"
c.execute("INSERT INTO project (content) values (?)", (te))
Error
sqlite3.ProgrammingError: Incorrect number of bindings supplied.
The current statement uses 1, and there are 7 supplied.