File size: 838 Bytes
936e0a7 |
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 29 30 31 32 33 34 35 36 37 38 39 40 |
### Sqlite Database
import simplestart as ss
ss.md("## ss.sqlite Database")
ss.space()
ss.md('''
Provides simple operations for the SQLite database.
''')
ss.space()
ss.md('''
#### 🔅 Example
''')
ss.md('''
::: tip
This example reads the Iris dataset from the SQLite database and displays it in a CSV table format.
For SQLite management, simplestart offers a built-in tool for simple create, read, update, and delete operations.
:::
''')
sql = ss.sqlite("./data/ss_data.db")
df = sql.pd_query("select * from iris")
mytable = ss.table(df, editable = True)###, handlers={"current-change":current_change, "selection-change":selection_change})
ss.space()
ss.write("#### Code")
ss.md('''
```python
import simplestart as ss
sql = ss.sqlite("./data/ss_data.db")
data = sql.pd_query("select * from HousingData")
ss.write(data)
```
''')
|