├── .gitignore ├── README.md ├── RELEASE.md ├── UNLICENSE ├── docs ├── sql-queries.md └── table-modelling.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kotysa-android ├── README.md ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── pullvert │ │ └── kotysa │ │ └── android │ │ ├── SqlClientDeleteSqLite.kt │ │ ├── SqlClientSelectSqLite.kt │ │ ├── SqlClientSqLite.kt │ │ └── SqlClientUpdateSqLite.kt │ └── test │ ├── kotlin │ └── com │ │ └── pullvert │ │ └── kotysa │ │ └── android │ │ ├── AbstractSqLiteTest.kt │ │ ├── AbstractUserRepository.kt │ │ ├── DbHelper.kt │ │ ├── Repository.kt │ │ ├── SqLiteAllTypesTest.kt │ │ ├── SqLiteSelectBooleanTest.kt │ │ ├── SqLiteSelectIntegerTest.kt │ │ ├── SqLiteSelectLocalDateTest.kt │ │ ├── SqLiteSelectLocalDateTimeTest.kt │ │ ├── SqLiteSelectLocalTimeTest.kt │ │ ├── SqLiteSelectOffsetDateTimeTest.kt │ │ ├── SqLiteSelectOrTest.kt │ │ ├── SqLiteSelectStringTest.kt │ │ ├── SqLiteSelectTest.kt │ │ ├── SqLiteUpdateDeleteTest.kt │ │ └── sample │ │ └── sqlClientSqLite.kt │ └── resources │ └── logback.xml ├── kotysa-core ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── pullvert │ │ └── kotysa │ │ ├── AbstractRow.kt │ │ ├── AliasedTable.kt │ │ ├── BlockingSqlClient.kt │ │ ├── Column.kt │ │ ├── ColumnBuilder.kt │ │ ├── ColumnDsl.kt │ │ ├── ColumnProperty.kt │ │ ├── CoroutinesSqlClient.kt │ │ ├── DbType.kt │ │ ├── DbTypeChoice.kt │ │ ├── DefaultSqlClient.kt │ │ ├── DefaultSqlClientDeleteOrUpdate.kt │ │ ├── DefaultSqlClientSelect.kt │ │ ├── Exceptions.kt │ │ ├── Field.kt │ │ ├── FieldAccess.kt │ │ ├── FieldProvider.kt │ │ ├── FieldSetter.kt │ │ ├── ForeignKey.kt │ │ ├── JoinClause.kt │ │ ├── JoinDsl.kt │ │ ├── KotysaMarker.kt │ │ ├── Nullable.kt │ │ ├── PrimaryKey.kt │ │ ├── Reflection.kt │ │ ├── SelectDsl.kt │ │ ├── SelectDslApi.kt │ │ ├── SqlType.kt │ │ ├── Table.kt │ │ ├── TableColumnPropertyProvider.kt │ │ ├── TableDsl.kt │ │ ├── TablesDsl.kt │ │ ├── UpdateSetDsl.kt │ │ ├── ValueProvider.kt │ │ ├── WhereClause.kt │ │ ├── WhereDsl.kt │ │ ├── h2 │ │ ├── H2Column.kt │ │ ├── H2ColumnBuilder.kt │ │ ├── H2ColumnDsl.kt │ │ ├── H2DefaultSqlClientDeleteOrUpdate.kt │ │ ├── H2TableDsl.kt │ │ └── H2TablesDsl.kt │ │ ├── postgresql │ │ ├── PostgresqlColumnDsl.kt │ │ ├── PostgresqlDefaultSqlClientDeleteOrUpdate.kt │ │ ├── PostgresqlTableDsl.kt │ │ └── PostgresqlTablesDsl.kt │ │ └── sqlite │ │ ├── SqLiteColumnDsl.kt │ │ ├── SqLiteDefaultSqlClient.kt │ │ ├── SqLiteTableDsl.kt │ │ └── SqLiteTablesDsl.kt │ ├── test │ ├── kotlin │ │ └── com │ │ │ └── pullvert │ │ │ └── kotysa │ │ │ ├── H2TablesDslTest.kt │ │ │ └── sample │ │ │ ├── h2Tables.kt │ │ │ ├── postgresqlTables.kt │ │ │ └── sqLiteTables.kt │ └── resources │ │ ├── junit-platform.properties │ │ └── logback.xml │ └── testFixtures │ ├── java │ └── com │ │ └── pullvert │ │ └── kotysa │ │ └── test │ │ ├── Entity.java │ │ └── JavaUser.java │ └── kotlin │ └── com │ └── pullvert │ └── kotysa │ └── test │ ├── CommonTestEntities.kt │ ├── H2TestEntities.kt │ ├── PostgresqlTestEntities.kt │ └── SqLiteTestEntities.kt ├── kotysa-platform └── build.gradle ├── kotysa-spring-data-r2dbc ├── README.md ├── build.gradle └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── pullvert │ │ └── kotysa │ │ └── r2dbc │ │ ├── AbstractSqlClientDeleteR2dbc.kt │ │ ├── AbstractSqlClientR2dbc.kt │ │ ├── AbstractSqlClientSelectR2dbc.kt │ │ ├── AbstractSqlClientUpdateR2dbc.kt │ │ ├── CoroutinesSqlClientDeleteR2dbc.kt │ │ ├── CoroutinesSqlClientR2dbc.kt │ │ ├── CoroutinesSqlClientSelectR2dbc.kt │ │ ├── CoroutinesSqlClientUpdateR2dbc.kt │ │ ├── ReactorSqlClient.kt │ │ ├── ReactorTransactionalOperation.kt │ │ ├── SqlClientDeleteR2dbc.kt │ │ ├── SqlClientR2dbc.kt │ │ ├── SqlClientSelectR2dbc.kt │ │ ├── SqlClientUpdateR2dbc.kt │ │ ├── TransactionStatus.kt │ │ ├── TransactionStatusR2dbc.kt │ │ └── TransactionalOperationR2dbc.kt │ └── test │ ├── kotlin │ └── com │ │ └── pullvert │ │ └── kotysa │ │ └── r2dbc │ │ ├── Repository.kt │ │ ├── h2 │ │ ├── AbstractR2dbcH2Test.kt │ │ ├── AbstractUserRepositoryH2.kt │ │ ├── R2DbcAllTypesH2Test.kt │ │ ├── R2DbcInheritanceH2Test.kt │ │ ├── R2DbcJavaEntityH2Test.kt │ │ ├── R2DbcSelectAndH2Test.kt │ │ ├── R2DbcSelectBooleanH2Test.kt │ │ ├── R2DbcSelectH2Test.kt │ │ ├── R2DbcSelectIntH2Test.kt │ │ ├── R2DbcSelectLocalDateH2Test.kt │ │ ├── R2DbcSelectLocalDateTimeAsTimestampH2Test.kt │ │ ├── R2DbcSelectLocalDateTimeH2Test.kt │ │ ├── R2DbcSelectLocalTimeH2Test.kt │ │ ├── R2DbcSelectOffsetDateTimeH2Test.kt │ │ ├── R2DbcSelectOrH2Test.kt │ │ ├── R2DbcSelectStringH2Test.kt │ │ ├── R2DbcSelectUuidH2Test.kt │ │ ├── R2DbcUpdateDeleteH2Test.kt │ │ └── R2dbcCoroutinesH2Test.kt │ │ ├── postgresql │ │ ├── AbstractR2dbcPostgresqlTest.kt │ │ ├── AbstractUserRepositoryPostgresql.kt │ │ ├── R2DbcAllTypesPostgresqlTest.kt │ │ ├── R2DbcInheritancePostgresqlTest.kt │ │ ├── R2DbcJavaEntityPostgresqlTest.kt │ │ ├── R2DbcSelectBooleanPostgresqlTest.kt │ │ ├── R2DbcSelectIntPostgresqlTest.kt │ │ ├── R2DbcSelectLocalDatePostgresqlTest.kt │ │ ├── R2DbcSelectLocalDateTimePostgresqlTest.kt │ │ ├── R2DbcSelectLocalTimePostgresqlTest.kt │ │ ├── R2DbcSelectOffsetDateTimePostgresqlTest.kt │ │ ├── R2DbcSelectOrPostgresqlTest.kt │ │ ├── R2DbcSelectPostgresqlTest.kt │ │ ├── R2DbcSelectStringPostgresqlTest.kt │ │ ├── R2DbcSelectUuidPostgresqlTest.kt │ │ ├── R2DbcUpdateDeletePostgresqlTest.kt │ │ └── R2dbcCoroutinesPostgresqlTest.kt │ │ └── sample │ │ ├── coroutinesSqlClientR2dbc.kt │ │ └── sqlClientR2dbc.kt │ └── resources │ ├── application.properties │ ├── junit-platform.properties │ └── logback.xml ├── samples ├── README.md ├── kotysa-coroutines-r2dbc │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── com │ │ │ └── sample │ │ │ ├── Application.kt │ │ │ ├── Configurations.kt │ │ │ ├── Handlers.kt │ │ │ ├── Model.kt │ │ │ ├── Repositories.kt │ │ │ └── Routes.kt │ │ └── test │ │ ├── kotlin │ │ └── com │ │ │ └── sample │ │ │ ├── IntegrationTests.kt │ │ │ └── UserRepositoryTests.kt │ │ └── resources │ │ ├── junit-platform.properties │ │ └── logback.xml └── kotysa-reactive-r2dbc │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── sample │ │ ├── Application.kt │ │ ├── Configurations.kt │ │ ├── Handlers.kt │ │ ├── Model.kt │ │ ├── Repositories.kt │ │ └── Routes.kt │ └── test │ ├── kotlin │ └── com │ │ └── sample │ │ ├── IntegrationTests.kt │ │ └── UserRepositoryTests.kt │ └── resources │ ├── junit-platform.properties │ └── logback.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/RELEASE.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/UNLICENSE -------------------------------------------------------------------------------- /docs/sql-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/docs/sql-queries.md -------------------------------------------------------------------------------- /docs/table-modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/docs/table-modelling.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kotysa-android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/README.md -------------------------------------------------------------------------------- /kotysa-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/build.gradle -------------------------------------------------------------------------------- /kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientDeleteSqLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientDeleteSqLite.kt -------------------------------------------------------------------------------- /kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientSelectSqLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientSelectSqLite.kt -------------------------------------------------------------------------------- /kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientSqLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientSqLite.kt -------------------------------------------------------------------------------- /kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientUpdateSqLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/main/kotlin/com/pullvert/kotysa/android/SqlClientUpdateSqLite.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/AbstractSqLiteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/AbstractSqLiteTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/AbstractUserRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/AbstractUserRepository.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/DbHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/DbHelper.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/Repository.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteAllTypesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteAllTypesTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectBooleanTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectBooleanTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectIntegerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectIntegerTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalDateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalDateTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalDateTimeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalDateTimeTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalTimeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectLocalTimeTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectOffsetDateTimeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectOffsetDateTimeTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectOrTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectOrTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectStringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectStringTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteSelectTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteUpdateDeleteTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/SqLiteUpdateDeleteTest.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/sample/sqlClientSqLite.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/kotlin/com/pullvert/kotysa/android/sample/sqlClientSqLite.kt -------------------------------------------------------------------------------- /kotysa-android/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-android/src/test/resources/logback.xml -------------------------------------------------------------------------------- /kotysa-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/build.gradle -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/AbstractRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/AbstractRow.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/AliasedTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/AliasedTable.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/BlockingSqlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/BlockingSqlClient.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Column.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Column.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnBuilder.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnProperty.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/ColumnProperty.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/CoroutinesSqlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/CoroutinesSqlClient.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/DbType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/DbType.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/DbTypeChoice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/DbTypeChoice.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClient.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClientDeleteOrUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClientDeleteOrUpdate.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClientSelect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/DefaultSqlClientSelect.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Exceptions.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Field.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Field.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldAccess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldAccess.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldProvider.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldSetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/FieldSetter.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/ForeignKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/ForeignKey.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/JoinClause.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/JoinClause.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/JoinDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/JoinDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/KotysaMarker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/KotysaMarker.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Nullable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Nullable.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/PrimaryKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/PrimaryKey.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Reflection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Reflection.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/SelectDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/SelectDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/SelectDslApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/SelectDslApi.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/SqlType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/SqlType.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/Table.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/Table.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/TableColumnPropertyProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/TableColumnPropertyProvider.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/TableDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/TableDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/TablesDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/TablesDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/UpdateSetDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/UpdateSetDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/ValueProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/ValueProvider.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/WhereClause.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/WhereClause.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/WhereDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/WhereDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2Column.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2Column.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2ColumnBuilder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2ColumnBuilder.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2ColumnDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2ColumnDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2DefaultSqlClientDeleteOrUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2DefaultSqlClientDeleteOrUpdate.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2TableDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2TableDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2TablesDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/h2/H2TablesDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlColumnDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlColumnDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlDefaultSqlClientDeleteOrUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlDefaultSqlClientDeleteOrUpdate.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlTableDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlTableDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlTablesDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/postgresql/PostgresqlTablesDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteColumnDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteColumnDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteDefaultSqlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteDefaultSqlClient.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteTableDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteTableDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteTablesDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/main/kotlin/com/pullvert/kotysa/sqlite/SqLiteTablesDsl.kt -------------------------------------------------------------------------------- /kotysa-core/src/test/kotlin/com/pullvert/kotysa/H2TablesDslTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/test/kotlin/com/pullvert/kotysa/H2TablesDslTest.kt -------------------------------------------------------------------------------- /kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/h2Tables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/h2Tables.kt -------------------------------------------------------------------------------- /kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/postgresqlTables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/postgresqlTables.kt -------------------------------------------------------------------------------- /kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/sqLiteTables.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/test/kotlin/com/pullvert/kotysa/sample/sqLiteTables.kt -------------------------------------------------------------------------------- /kotysa-core/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | -------------------------------------------------------------------------------- /kotysa-core/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/test/resources/logback.xml -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/java/com/pullvert/kotysa/test/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/java/com/pullvert/kotysa/test/Entity.java -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/java/com/pullvert/kotysa/test/JavaUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/java/com/pullvert/kotysa/test/JavaUser.java -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/CommonTestEntities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/CommonTestEntities.kt -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/H2TestEntities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/H2TestEntities.kt -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/PostgresqlTestEntities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/PostgresqlTestEntities.kt -------------------------------------------------------------------------------- /kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/SqLiteTestEntities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-core/src/testFixtures/kotlin/com/pullvert/kotysa/test/SqLiteTestEntities.kt -------------------------------------------------------------------------------- /kotysa-platform/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-platform/build.gradle -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/README.md -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/build.gradle -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientDeleteR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientDeleteR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientSelectR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientSelectR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientUpdateR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/AbstractSqlClientUpdateR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientDeleteR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientDeleteR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientSelectR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientSelectR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientUpdateR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/CoroutinesSqlClientUpdateR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/ReactorSqlClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/ReactorSqlClient.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/ReactorTransactionalOperation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/ReactorTransactionalOperation.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientDeleteR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientDeleteR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientSelectR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientSelectR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientUpdateR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/SqlClientUpdateR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionStatus.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionStatusR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionStatusR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionalOperationR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/main/kotlin/com/pullvert/kotysa/r2dbc/TransactionalOperationR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/Repository.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/AbstractR2dbcH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/AbstractR2dbcH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/AbstractUserRepositoryH2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/AbstractUserRepositoryH2.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcAllTypesH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcAllTypesH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcInheritanceH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcInheritanceH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcJavaEntityH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcJavaEntityH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectAndH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectAndH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectBooleanH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectBooleanH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectIntH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectIntH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateTimeAsTimestampH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateTimeAsTimestampH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateTimeH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalDateTimeH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalTimeH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectLocalTimeH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectOffsetDateTimeH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectOffsetDateTimeH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectOrH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectOrH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectStringH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectStringH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectUuidH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcSelectUuidH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcUpdateDeleteH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2DbcUpdateDeleteH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2dbcCoroutinesH2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/h2/R2dbcCoroutinesH2Test.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/AbstractR2dbcPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/AbstractR2dbcPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/AbstractUserRepositoryPostgresql.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/AbstractUserRepositoryPostgresql.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcAllTypesPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcAllTypesPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcInheritancePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcInheritancePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcJavaEntityPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcJavaEntityPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectBooleanPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectBooleanPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectIntPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectIntPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalDatePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalDatePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalDateTimePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalDateTimePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalTimePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectLocalTimePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectOffsetDateTimePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectOffsetDateTimePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectOrPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectOrPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectStringPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectStringPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectUuidPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcSelectUuidPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcUpdateDeletePostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2DbcUpdateDeletePostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2dbcCoroutinesPostgresqlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/postgresql/R2dbcCoroutinesPostgresqlTest.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/sample/coroutinesSqlClientR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/sample/coroutinesSqlClientR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/sample/sqlClientR2dbc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/kotlin/com/pullvert/kotysa/r2dbc/sample/sqlClientR2dbc.kt -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/resources/application.properties: -------------------------------------------------------------------------------- 1 | #logging.level.org.springframework.data.r2dbc=DEBUG 2 | -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default=per_class 2 | -------------------------------------------------------------------------------- /kotysa-spring-data-r2dbc/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/kotysa-spring-data-r2dbc/src/test/resources/logback.xml -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/build.gradle -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/gradlew -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/gradlew.bat -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/settings.gradle -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Application.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Configurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Configurations.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Handlers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Handlers.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Model.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Repositories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Repositories.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Routes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/main/kotlin/com/sample/Routes.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/test/kotlin/com/sample/IntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/test/kotlin/com/sample/IntegrationTests.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/test/kotlin/com/sample/UserRepositoryTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/test/kotlin/com/sample/UserRepositoryTests.kt -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default = per_class -------------------------------------------------------------------------------- /samples/kotysa-coroutines-r2dbc/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-coroutines-r2dbc/src/test/resources/logback.xml -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/build.gradle -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/gradlew -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/gradlew.bat -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/settings.gradle -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Application.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Configurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Configurations.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Handlers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Handlers.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Model.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Repositories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Repositories.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Routes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/main/kotlin/com/sample/Routes.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/test/kotlin/com/sample/IntegrationTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/test/kotlin/com/sample/IntegrationTests.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/test/kotlin/com/sample/UserRepositoryTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/test/kotlin/com/sample/UserRepositoryTests.kt -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/test/resources/junit-platform.properties: -------------------------------------------------------------------------------- 1 | junit.jupiter.testinstance.lifecycle.default = per_class -------------------------------------------------------------------------------- /samples/kotysa-reactive-r2dbc/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/samples/kotysa-reactive-r2dbc/src/test/resources/logback.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pull-vert/kotysa/HEAD/settings.gradle --------------------------------------------------------------------------------