-
Notifications
You must be signed in to change notification settings - Fork 8
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
blog/version-3-13-1-rc1-released/ #35
Comments
I cannot find anywhere to download this |
In the blog post (which you've replied to) should contain a bunch of assets. For the avoidance of doubt, the blog post is here. So if you click that blog post (which you've replied to), do you see assets at the bottom of the page? You may need to scroll down as they're at the bottom of the page. |
@chrisjlocke It's a new account with almost no activity. Might just be a bot. |
tab "Browse Data" , render all "Date" value as "0" / Null But Version 3.13.0 is OK |
@thechanon Are you able to share a database with us which has this happen for you? Just so we can test if it happens when we try it, which will help us understand what's going wrong. 😄 |
@justinclift Yes. may you download example file from: https://drive.google.com/drive/folders/1_inM9fH8kf06nEiz3xqZ7_OxgDE_mzdX?usp=sharing |
@mgrojo Want to take a look? 😄 |
Can you provide a screenshot? Your database (https://dbhub.io/chrisjlocke2/example.db) seems OK to me. |
Yes. Please see capture image. https://drive.google.com/file/d/1V_zvDYisgVkhGUBPwmnr2TKDAZYgYeLo/view?usp=sharing Number (1) show: 2024-04-01 Expected : Number (2) show the same content as Number (1) |
Well, yes, that makes sense. You've used a 'DATE' data type, which isn't a sqlite standard. SQLite only knows about text, integer, real and blobs. CHAR(512) is also an unknown type. Change it to text, and all is well again in the world. Birds continue to sing and dolphins squeak happily.
AGain, for the avoidance of doubt, this is a SQLite thing, which is the database layer, not a DB4S thing - its not like DB4S only supports certain types. So there is no fault in DB4S. Its not the applications fault. This is how SQLite works. |
If you edit a table, DB4S handily gives you the field types it knows about Although this is a free-type field, and you can put what you like in there, and SQLite even allows integer in text fields, text in integer fields and everything in between, the DB4S application is a bit more strict and only displays the text thingy properly for field types it knows are text fields. This is so it doesn't corrupt data. Its trying to be helpful. |
Version 3.13.1-rc1 released - DB Browser for SQLite
https://sqlitebrowser.org/blog/version-3-13-1-rc1-released/
The text was updated successfully, but these errors were encountered: