Sorry to say, but 3.4.0 seems like a step back compared to 3.3.3 #4584
Replies: 1 comment 6 replies
-
Slow operations on loading table's data - this may have to do with removed memory optimization, where SQLiteStudio 3.3.x limits length of preloaded cell data to 100 characters (and lets you load full value for individual cell by clicking a blue arrow icon on that cell), whereas 3.4.0 always loads full cell value at once. Also considering that you get the "reduced rows to 3125" means that you have significant number of columns in your table. You also configured your SQLiteStudio to load more than default 1000 rows per page. You didn't see this message in 3.3.x because I made this limit a bit lower in 3.4.0, due to the preloading cell-size limit being removed (as in the paragraph above). The two above reasons together may cause your slowness. Loading a lot of columns with a lot of rows, where cells may contain huge values can result in such slowness. You may wonder, why did I remove the cell-size limit? Well, it turns out it was causing way more problems than benefits. Even small, simple queries became problematic and often produced incorrect results. My advice - configure app to show max 1000 rows. |
Beta Was this translation helpful? Give feedback.
-
Reverted back to 3.3.3, which is much more responsive.
Thanks Pawel !
Beta Was this translation helpful? Give feedback.
All reactions