Part-DB 1.13.0 - PostgreSQL support, natural sorting and more #638
Replies: 4 comments
-
Thank you very much for the new version. |
Beta Was this translation helpful? Give feedback.
-
@jbtronics thanks for the update, could you please update the example csv and documentation in the wiki for the new import functions? |
Beta Was this translation helpful? Give feedback.
-
Hello, how to configure docker-compose.yaml for use Postgre? |
Beta Was this translation helpful? Give feedback.
-
@jbtronics Does sorting by prefix also work with natural sorting? For example R, kR, MR? |
Beta Was this translation helpful? Give feedback.
-
Part-DB 1.13.0 - PostgreSQL support, natural sorting and more
If you like Part-DB, please consider donating to help further development. See the sponsor button on the homepage.
PostgreSQL
Part-DB now supports PostgreSQL as database. See documentation on how it compares with other database types.
Natural Sorting
Part-DB now supports natural sorting in part tables and tress.
So instead of sorting elements like
DIP-14
,DIP-28
,DIP-4
,DIP-8
, the elements now get sorted like expected asDIP-4
,DIP-8
,DIP-14
andDIP-28
.If you are using PostgreSQL or MariaDB 10.7+ then this kind of sorting is supported natively and natural sorting gets automatically enabled.
If you are running SQLite or MySQL then it is possible to emulate natural sorting by setting the
DATABASE_EMULATE_NATURAL_SORT
to 1.Please note that this emulation can be very slow and might have some issues and quirks.
Full changelog
New features
Bugfixes
--overwrite
option of backup command not working (issue --overwrite doesn't work #635)Miscellaneous
New Contributors
Full Changelog: v1.12.1...v1.13.0
This discussion was created from the release Part-DB 1.13.0.
Beta Was this translation helpful? Give feedback.
All reactions