Exposed icon indicating copy to clipboard operation
Exposed copied to clipboard

Kotlin SQL Framework

Results 291 Exposed issues
Sort by recently updated
recently updated
newest added

Hello, I would like to create custom ColumnType for geo point from postgis. Now, when I read point i have to use PostGIS functions: ST_X(ST_TRANSFORM(table.geometry,4674)) AS LONG, ST_Y(ST_TRANSFORM(table.geometry,4674)) AS LAT,...

to be documented

For instance, here's a sample from readme: ```kotlin class User(id: EntityID) : IntEntity(id) { companion object : IntEntityClass(Users) var name by Users.name var city by City referencedOn Users.city var age...

documentation

I want to access Android SQLite database with a fully-featured ORM (Android Jetpack Room is a too weak one), but as I know, Exposed can be used only with JDBC....

#### Description **Summary of the change**: Update Spring Boot starter `ExposedAotContribution` runtime hints with classes introduced since 1.0.0. **Detailed description**: - **Why**: I ran my my original Spring Graalvm test...

#### Description **Summary of the change**: Fixed eager loading to honor `orderBy` clauses defined on `Referrers` relationships when using the DAO `load()` function. Previously, the ordering was ignored during eager...

#### Description **Summary of the change**: Add new module to hold `SpringReactiveTransactionManager`, for use of `spring-r2dbc` with `exposed-r2dbc`. New module structure: ``` -- exposed-core + exposed-jdbc -- spring-transaction -- exposed-spring-boot-starter...

#### Description **Summary of the change**: Introduced `JdbcTransactionManager` and `R2dbcTransactionManager` interfaces to allow creating custom transaction managers and fix ClassCastException issues. **Detailed description**: - It was not possible to create...

#### Description **Summary of the change**: SQLite JSONB columns are now automatically wrapped in `JSON()` whenever they are included in a query's `SELECT` clause. To facilitate this, there is also...

#### Description **Summary of the change**: Restored `Transaction.userData` no longer happens directly after call to `afterCommit()`, but directly before. **Detailed description**: - **Why**: `StatementInterceptor` allows user to hold onto specific...

#### Description The Exposed `SpringTransactionManager` currently does not make Spring JDBC constructs take part in the transaction. In short: ```kotlin @Autowired private lateinit var dataSource: DataSource @Transactional fun insertTwoThings() {...