Skip to content

Conversation

taeyeon-Kim
Copy link
Contributor

@taeyeon-Kim taeyeon-Kim commented Feb 3, 2020

  • Add anchor to section on jdbc value in reference docs.
  • Correct Lifecycle Events example in reference.

@taeyeon-Kim taeyeon-Kim changed the title Add anchor to section on jdbc value in reference docs. DATAJDBC-483 - Add anchor to section on jdbc value in reference docs. Feb 3, 2020
@taeyeon-Kim taeyeon-Kim changed the title DATAJDBC-483 - Add anchor to section on jdbc value in reference docs. DATAJDBC-483 - Correct reference docs. Feb 7, 2020
schauder pushed a commit that referenced this pull request Feb 7, 2020
Add anchor to section on JdbcValue in reference documentation.

Original pull request: #189.
schauder pushed a commit that referenced this pull request Feb 7, 2020
Add anchor to section on JdbcValue in reference documentation.
Correct the type of `BeforeSaveEvent` in example code.

Original pull request: #189.
schauder pushed a commit that referenced this pull request Feb 7, 2020
Add anchor to section on JdbcValue in reference documentation.
Correct the type of `BeforeSaveEvent` in example code.

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

schauder commented Feb 7, 2020

That's squashed and back ported. Thanks.

@schauder schauder closed this Feb 7, 2020
mp911de added a commit that referenced this pull request Feb 21, 2022
We now accept StatementFilterFunction and ExecuteFunction via DatabaseClient to filter Statement execution. StatementFilterFunctions can be used to pre-process the statement or post-process Result objects.

databaseClient.execute(…)
		.filter((s, next) -> next.execute(s.returnGeneratedValues("my_id")))
		.filter((s, next) -> next.execute(s.fetchSize(25)))

databaseClient.execute(…)
		.filter(s -> s.returnGeneratedValues("my_id"))
		.filter(s -> s.fetchSize(25))

Original pull request: #308.
mp911de pushed a commit that referenced this pull request Feb 21, 2022
Made assertions in tests more strict.

Original pull request: #308.
mp911de pushed a commit that referenced this pull request Feb 21, 2022
Refactored DefaultDatabaseClientUnitTests in order to make the relevant differences in setup easier to spot.

Original pull request: #308.
mp911de added a commit that referenced this pull request Feb 21, 2022
Fix nullability annotations. Relax generics at DatabaseClient.StatementFilterSpec.filter(…).

Original pull request: #308.
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