Simon Willison
|
b30f924c49
|
Implemented 'sqlite-utils upsert my.db tablename --pk=x'
|
2019-01-24 21:20:10 -08:00 |
|
Simon Willison
|
9e74289397
|
'sqlite-utils insert tablename file.json' command
|
2019-01-24 21:06:41 -08:00 |
|
Simon Willison
|
0a8194e730
|
sqlite-utils optimize command, .optimize() and .detect_fts() table methods
|
2019-01-24 20:35:51 -08:00 |
|
Simon Willison
|
66fd63b119
|
Ability to list just FTS4 or FTS5 table names
|
2019-01-24 19:57:04 -08:00 |
|
Simon Willison
|
231224ba1a
|
Added vacuum to CLI and Python API
|
2019-01-24 19:39:04 -08:00 |
|
Simon Willison
|
fd5829b27d
|
First CLI command: sqlite-utils table_names test.db
|
2019-01-24 19:30:47 -08:00 |
|
Simon Willison
|
228d595f7d
|
Allow column names to be reserved words
|
2019-01-24 19:01:10 -08:00 |
|
Simon Willison
|
6ad9037c96
|
Added support for bytes and datetime.datetime
|
2019-01-24 18:59:21 -08:00 |
|
Simon Willison
|
02862be04c
|
Default to FTS5
|
2018-08-12 17:21:55 -07:00 |
|
Simon Willison
|
9eacd30b1d
|
New column_order= parameter for setting column order
|
2018-08-08 16:06:49 -07:00 |
|
Simon Willison
|
72644b6e3f
|
Support method chaining, added .last_id for accessing lastrowid
Also shipping as 0.5
|
2018-08-05 18:42:43 -07:00 |
|
Simon Willison
|
a86c3ee832
|
Added db.create_view(name, sql) method
|
2018-08-02 08:24:16 -07:00 |
|
Simon Willison
|
741e8f7fe5
|
Make .indexes compatible with older SQLite versions (#1)
Older SQLite versions return a different set of columns from the PRAGMA we are using.
|
2018-08-02 08:17:29 -07:00 |
|
Simon Willison
|
0aa28293ad
|
Fix compatibility with SQLite prior to 3.16.0
pragma_index_info() and pragma_index_list() were introduced in 3.16.0 but the
version of SQLite running in Travis CI is earlier than that, hence the test
failures:
https://travis-ci.com/simonw/sqlite-utils/jobs/137617744
|
2018-08-01 08:29:53 -07:00 |
|
Simon Willison
|
4427d2d96f
|
table.create_index(columns, index_name) method
|
2018-08-01 08:20:44 -07:00 |
|
Simon Willison
|
c611ed80d2
|
.indexes property for introspecting indexes
|
2018-07-31 18:31:29 -07:00 |
|
Simon Willison
|
515d362ad6
|
.table_names and .tables properties plus expanded docs
|
2018-07-31 17:35:36 -07:00 |
|
Simon Willison
|
f4907f6df5
|
enable_fts(), populate_fts() and search() methods
|
2018-07-31 09:19:20 -07:00 |
|
Simon Willison
|
e888bb122d
|
Added .schema property, improved docs, release 0.3
|
2018-07-31 08:33:52 -07:00 |
|
Simon Willison
|
5deb65f062
|
Now you just 'from sqlite_utils import Database'
Plus fixed ad_id in the Russian ads example in the docs
|
2018-07-30 20:30:23 -07:00 |
|
Simon Willison
|
b69f8b6c85
|
table.count property, plus made a start on table documentation
|
2018-07-30 20:24:35 -07:00 |
|
Simon Willison
|
e51f36d3eb
|
Added table.foreign_keys property, fixed bug in foreign key creation
|
2018-07-28 15:41:18 -07:00 |
|
Simon Willison
|
95bce37ad3
|
Store list/dict/tuple values as JSON strings
|
2018-07-28 15:20:29 -07:00 |
|
Simon Willison
|
acea54877c
|
Create table now works for pure m2m where both rows are foreign keys
|
2018-07-28 15:06:59 -07:00 |
|
Simon Willison
|
bd71be32ab
|
Initial project layout + database table creation tools
|
2018-07-28 06:46:17 -07:00 |
|