mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-05 15:13:51 -09:00
12 lines
341 B
Python
12 lines
341 B
Python
# From:
|
|
# https://github.com/web2py/pydal/tree/v20260313.1#usage-and-documentation
|
|
from pydal import DAL, Field
|
|
db = DAL('sqlite://storage.db')
|
|
db.define_table('thing', Field('name'))
|
|
db.thing.insert(name='Chair')
|
|
query = db.thing.name.startswith('C')
|
|
rows = db(query).select()
|
|
print(rows[0].name)
|
|
assert rows[0].name == "Chair"
|
|
db.commit()
|