doma icon indicating copy to clipboard operation
doma copied to clipboard

DAO oriented database mapping framework for Java 8+

Results 12 doma issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.diffplug.spotless | `6.7.2` -> `6.9.1` | [![age](https://badges.renovateapi.com/packages/maven/com.diffplug.spotless/6.9.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

dependencies

This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Ignored or Blocked These are blocked by an existing closed PR and will...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | com.diffplug.eclipse.apt | `3.37.1` -> `3.37.2` | [![age](https://badges.renovateapi.com/packages/maven/com.diffplug.eclipse.apt/3.37.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

dependencies

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.microsoft.sqlserver:mssql-jdbc](https://togithub.com/Microsoft/mssql-jdbc) | `8.4.1.jre8` -> `11.2.0.jre18` | [![age](https://badges.renovateapi.com/packages/maven/com.microsoft.sqlserver:mssql-jdbc/11.2.0.jre18/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

dependencies

The workflow gradle-wrapper-validation.yml is referencing action gradle/wrapper-validation-action using references v1. However this reference is missing the commit [89eda1fdc0167f59521d2bb10767f7169fb4d018](https://github.com/gradle/wrapper-validation-action/commits/89eda1fdc0167f59521d2bb10767f7169fb4d018) which may contain fix to the some vulnerability. The vulnerability fix that...

## Description While testing `Doma` (and using `java.time.Instant` and/or `java.util.UUID` types) I'm always getting error messages like: ```shell [DOMA4096] The class "java.util.UUID" is not supported as a persistent type. If...

For some reason the Eclipse compiler has issues with finding /META-INF sql files. The error: ``` [DOMA4019] The file "META-INF/--/some.sql" is not found in the classpath. The absolute path is...

## Feature Requests Please consider supporting database spatial data types (MySQL spatial or PostGIS). Example: ```java @Getter @Setter @Entity(listener = SampleEntityListener.class) @Table(name = "SAMPLE") public class SampleEntity { @Id @GeneratedValue(strategy...

すみませんですが、このDoma2のドキュメントの中国語のバージョン作りたいですが、いかがでしょうか。 このフレームワーク興味がありますので、やりたいんです。

support upsert. Below are the code examples of upsert. ## @Dao ```java @Insert(duplicateKeyType = DuplicateKeyType.UPDATE) @Insert(duplicateKeyType = DuplicateKeyType.IGNORE) ``` ## Entityql ```java entityql.insert(d, list).onDuplicateKeyUpdate().execute(); entityql.insert(d, department).onDuplicateKeyIgnore().execute(); ``` ## NativeSql ```java...

feature