Kos
Profilo di
Nome | Kos |
---|---|
Indirizzo email | n/a |
Messaggi | 1 |
-
- 2022-10-06 13:45:06
- Funzione per la connessione ad un DB
- Forum >> Programmazione Python >> Database
-
Buongiorno tutti,
vorrei creare una function() che include le due righe evidenziate, in modo da non ripeterle ad ogni connessione.
Chi puo aiutare?
Ko$
app.route('/notes', methods=['GET', 'POST'])
def notes():
connection = sqlite3.connect('database.db')
connection.row_factory = sqlite3.Row
MyRecord = connection.execute('Select * from posts').fetchall()
connection.close
return render_template('notes.html', posts= MyRecord)