Listing 11-03: Using with to close the connection

##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 11\11.03 - Using with to close the connection.py
# Description: Using with to close the connection
##############################################################################

import sqlite3
from contextlib import closing

with sqlite3.connect("phonebook.db") as connection:
    with closing(connection.cursor()) as cursor:
        cursor.execute("select * from phonebook")
        while True:
            result = cursor.fetchone()
            if result is None:
                break
            print(f"Name: {result[0]}\nPhone: {result[1]}")
Click here to download the file