Sqltoy orm 5.6.10 has been released. ORM framework

The updated content of this version includes:

1. Fix the SQL file loading error caused by the introduction of spring aot in 5.6.5 (springboot2. x 3. x has been verified) 2. The problem of losing precision in optimizing oracle timestamp type to localDateTime (version 5.6.7) 3. Fix ToChar function in different database function adaption, which has only one parameter: to char (field) scenario processing defect (version 5.6.7)

 <!--  Other non spring frameworks can be extended based on sagacity sqltoy --> <dependency> <groupId>com.sagframe</groupId> <artifactId>sagacity-sqltoy</artifactId> <!--  The version number of jdk8 is 5.6.10. jre8 --> <version>5.6.10</version> </dependency> <!--  springboot  --> <dependency> <groupId>com.sagframe</groupId> <artifactId>sagacity-sqltoy-spring-starter</artifactId> <!--  The version number of jdk8 is 5.6.10. jre8 --> <version>5.6.10</version> </dependency> <!--  Solon plug-in --> <dependency> <groupId>com.sagframe</groupId> <artifactId>sagacity-sqltoy-solon-plugin</artifactId> <!--  The version number of jdk8 is 5.6.10. jre8 --> <version>5.6.10</version> </dependency>

Details: https://gitee.com/sagacity/sagacity-sqltoy/releases/5.6.10

 Back to top
Top