Skip to content

Conversation

evgdim
Copy link
Contributor

@evgdim evgdim commented Jan 8, 2019

This PR is an implementation of issue DATAJDBC-287 Document the usage of JdbcConfiguration

schauder pushed a commit that referenced this pull request Jan 9, 2019
schauder added a commit that referenced this pull request Jan 9, 2019
Moved the converter into it's own enum demonstrating good practices.
Added `@ReadingConverter`.

Original pull request: #106.
@schauder
Copy link
Contributor

schauder commented Jan 9, 2019

Thanks, that's polished and merged.

@schauder schauder closed this Jan 9, 2019
schauder pushed a commit that referenced this pull request Jan 9, 2019
schauder added a commit that referenced this pull request Jan 9, 2019
Moved the converter into it's own enum demonstrating good practices.
Added `@ReadingConverter`.

Original pull request: #106.
mp911de added a commit that referenced this pull request Feb 21, 2022
We now support Criteria creation and mapping to express where conditions with a fluent API.

databaseClient.select().from("legoset")
  .where(Criteria.of("name").like("John%").and("id").lessThanOrEquals(42055));

databaseClient.delete()
  .from(LegoSet.class)
  .where(Criteria.of("id").is(42055))
  .then()

databaseClient.delete()
  .from(LegoSet.class)
  .where(Criteria.of("id").is(42055))
  .fetch()
  .rowsUpdated()

Original pull request: #106.
mp911de added a commit that referenced this pull request Feb 21, 2022
mp911de added a commit that referenced this pull request Feb 21, 2022
Document fluent API. Add fluent API for update. Introduce StatementMapper. Migrate Insert to StatementMapper. Refactoring and cleanup. Migrate Select to StatementMapper.

Original pull request: #106.
mp911de pushed a commit that referenced this pull request Feb 21, 2022
Fixed typos, formatting and minor errors in documentation.

Original pull request: #106.
mp911de pushed a commit that referenced this pull request Feb 21, 2022
Incorporated feedback from review. Polished documentation and Javadoc. Minor code improvements restructuring for better readability. Removed unused methods types. Some polishing for compiler warnings.

Original pull request: #106.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants