New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: add sfrtime ('%d /%m /%y') option in the Edit display format #1213
Comments
Any interest in making a Pull Request? 😄 It should be pretty simple to do a copy-paste-adjust of one of these:
And yep, this is me trying to get you started with DB4S development bits as you have lots of useful suggestions. 😄 |
Hello Justin,
Unfortunately, currenlty, I only know a bit of Python (really very basic stuff...). For sure, as soon as I know much better Db Browser for Sqlite, I can upload some Video Tutorials on YouTube :-) |
Cool. No worries at all. And yep, more video's sounds good. 😄 |
Errr OpenShot or ShotCut? |
Out of interest, if a display format is set for a column, should that affect the data input method for that field? If a field is set to 'default', then typing into a cell types that data into that cell. If a column has a display format assigned to it, then typing into a cell no longer types that data into that cell. Typing in the 'Edit Database Cell' dock works, but this seems more 'time consuming' and laborious. I don't mind opening an issue for this (with screencast, which can explain stuff better than my mumblings), but wasn't sure what was 'normal behaviour' before I did... Also, I noticed the 'choose display format' dialog was 'read only' as the settings are hard coded in DB4S. Wouldn't it make sense for a 'custom' option or to allow the formats to be editable, which would allow this type of issue to be resolved directly by the user - they could enter whatever format they wanted. |
So I've cloned the repository, amended the file and GitHub Desktop has noticed the change. How do I make a pull request now? In GitHub Desktop, there is a 'Commit to master', but is that THE master, or MY master? *blank look* |
@chrisjlocke Did you clone from your fork, or from the sqlitebrowser/sqlitebrowser repo? It sounds like it's going to add a new commit to the master of whichever repo you cloned. 😄 |
Hello Justin ! , To record my video I run : Obs Studio (https://obsproject.com/download), which is open source and multi-platforms. I edit my video with Shotcut which runs both on Linux and Windows. IMHO, for video editing stuff, the best is DaVinci Resolve, which is free (not open source though) to download for everyone: |
Also reorganise the format functions to match the order of the dropbox items. See issue #1213.
@SilvioGrosso Just added the "Date as dd/mm/yyyy" display format. Can you check one of the next nightlies to see if it does the job as expected? 😄 |
Hello @MKleusberg Just tried this new option with today's build on Windows 10 (64 bit) through the x64.exe installer. I have also tested this new date feature (dd/mm/yyyyy) with SqliteBrowser Projects: THANKS a lot indeed ! As far as I am concerned, you can close this ticket ;-) |
Awesome. Great work guys. 😄 |
Hello everyone,
Please, add in the Browse Editor a new format for date columns, in the Edit display format options, that is:
strftime('%DAY /%MONTH /%YEAR', `MyColumn').
I am testing today's Windows daily build (3.10.99) on Windows 7 - 64 bit.
In short, I would like to have always displayed in the Browse editor my date columns as :
31/12/2017 (day/month/year) instead of 2017-12-31 (year-month-day)
At present, it only works when I write a Select statement.
E.g.:
SELECT strftime('%d /%m /%y',
MyColumnWithDate
) FROM MytableI have tried to paste my SQL Code directly in the Edit display format window but it is not possible to do so :-)
Thanks a lot indeed for considering this option !
The text was updated successfully, but these errors were encountered: