Our newest stable point release is online:
https://t.co/nwUn3D2zdT
No super critical updates unless you're using https://t.co/fDY4JsVoda anonymously. It's mainly for updating some of the embedded certificates for https://t.co/fDY4JsVoda, as the old ones expired. ;)
@fliedfood Just tried a download and it seems to be working OK for me...
We've had no other reports, so hope it was either a temporary thing or resolved now.
Are you sure you're connected to the Internet? ;)
@thismumcancode Nearly a year on, and we hope your database skills have come on leaps and bounds!
The beauty with database development is that pretty much every language can talk to a database, and nearly every application uses a database.
@j_la28 This tweet is quite old now, but just for future reference, always try the latest nightly version. Both Qt and SQLite get updated frequently, so it could be something to do with those versions on your system?
@mouse22_jp Did you try opening the CSV file? That won't work...
You need to import /into/ a database, so create a new database first, and import into that. :)
@mouse22_jp This becomes powerful when you have a weird column you want to sort by. Imagine you have fruits 'apple', 'oranges' and 'bananas' but you want to sort by 'orange', 'banana' then 'apple'. You can't do alphabetically or on the first letter. However, you can create a new column.
@mouse22_jp The _ character matches one character, while the % matches zero or more characters.
This is similar to the Windows command-prompt, when you want to show all text files - 'dir *.txt' .. or in Linux, you'd use 'ls *.txt'
Here they use the * instead of %, but it's the same practice