You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ktorm is a lightweight and efficient ORM Framework for Kotlin directly based on pure JDBC. It provides strong-typed and flexible SQL DSL and convenient sequence APIs to reduce our duplicated effort on database operations. All the SQL statements, of course, are generated automatically. Ktorm is open source and available under the Apache 2.0 license. Please leave a star if you've found this library helpful!
26
26
27
-
For more documentation, go to our site: [https://ktorm.liuwj.me](https://ktorm.liuwj.me).
27
+
For more documentation, go to our site: [https://www.ktorm.org](https://www.ktorm.org).
28
28
29
29
:us: English | :cn:[简体中文](README_cn.md) | :jp:[日本語](README_jp.md)
30
30
@@ -46,7 +46,7 @@ Ktorm was deployed to maven central and jcenter, so you just need to add a depen
46
46
47
47
```xml
48
48
<dependency>
49
-
<groupId>me.liuwj.ktorm</groupId>
49
+
<groupId>org.ktorm</groupId>
50
50
<artifactId>ktorm-core</artifactId>
51
51
<version>${ktorm.version}</version>
52
52
</dependency>
@@ -55,10 +55,10 @@ Ktorm was deployed to maven central and jcenter, so you just need to add a depen
Detailed usages of entity APIs can be found in the documentation of [column binding](https://ktorm.liuwj.me/en/entities-and-column-binding.html) and [entity query](https://ktorm.liuwj.me/en/entity-finding.html).
326
+
Detailed usages of entity APIs can be found in the documentation of [column binding](https://www.ktorm.org/en/entities-and-column-binding.html) and [entity query](https://www.ktorm.org/en/entity-finding.html).
327
327
328
328
## Entity Sequence APIs
329
329
@@ -496,4 +496,4 @@ val totalSalaries = database.employees
496
496
}
497
497
```
498
498
499
-
Detailed usages of entity sequence APIs can be found in the documentation of [entity sequence](https://ktorm.liuwj.me/en/entity-sequence.html) and [sequence aggregation](https://ktorm.liuwj.me/en/sequence-aggregation.html).
499
+
Detailed usages of entity sequence APIs can be found in the documentation of [entity sequence](https://www.ktorm.org./en/entity-sequence.html) and [sequence aggregation](https://www.ktorm.org/en/sequence-aggregation.html).
0 commit comments