blob: b9059c57865ca1ed241fa54709858fc16a5efb0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright (c) 2023 Egor Tensin <Egor.Tensin@gmail.com>
# This file is part of the "cimple" project.
# For details, see https://github.com/egor-tensin/cimple.
# Distributed under the MIT License.
from contextlib import closing, contextmanager
import sqlite3
class Database:
def __init__(self, path):
self.conn = sqlite3.connect(f'file:{path}?mode=ro')
def __enter__(self):
return self
def __exit__(*args):
self.conn.close()
@contextmanager
def get_cursor(self):
with closing(self.conn.cursor()) as cur:
yield cur
def get_all_runs(self):
with self.get_cursor() as cur:
cur.execute('SELECT * FROM cimple_runs_readable')
return cur.fetchall()
|