Per-Ake Minborg
Per-Ake Minborg
Currently, only the latest version of the manual is accessible online.
The database might, depending on version and settings, have different collations installed. Many times the user has to add the following lines: ``` .withParam("db.mysql.collationName", "utf8mb4_general_ci") .withParam("db.mysql.binaryCollationName", "utf8mb4_bin") ``` This setting...
Also, create archives for older versions
To avoid boxing/unboxing there could be specialized `TypeMapper` for some of the primitive types such as `int`, `long` and `double`. `ToIntTypeMapper` may implement `int toJavaTypeAsInt()` for example.
Develop a stand-alone Dashboard application that can connect to a set of Speedment instances. Using the Dashboard, it shall be possible to view internal metrics of the Speedment instance.
Tables and columns should be sortable on: 1) Ordinal Position 2) Name 3) Type 4) Enabled/Disabled 5) PKs first A second sort on Name could be applied on 3, 4...
Currently, the `Manager::updater`, `Manager::inserter` and `Manager::deleter` handle operations on a one-by-one case. It would be beneficial to introduce bulk update methods that could handle multiple operations in a single SQL...
The peek operation may be optimized away in some cases: http://download.java.net/java/jdk9/docs/api/java/util/stream/Stream.html#peek-java.util.function.Consumer- "In cases where the stream implementation is able to optimize away the production of some or all the elements...
Same for DateToInt etc.