Skip to content

Conversation

schauder
Copy link
Contributor

@schauder schauder commented Aug 2, 2018

Upgraded the dependency-plugin.
Configured matrix build for Travis, allowing the JDK 11 build to fail.
The failure should go away once the Spring Framework version we use includes the fix for SPR-17093.
Removed Jacoco from the build for JDK 10+.

Upgraded the dependency-plugin.
Configured matrix build for travis, allowing the JDK 11 build to fail.
The failure should go away once the Spring Framework version we use include the fix for SPR-17093.
Removed Jacoco from the build for JDK 10+.
Formating pom.xml
@gregturn
Copy link
Contributor

Resolved via 6233858

@gregturn gregturn closed this Oct 10, 2018
@gregturn gregturn deleted the issue/DATAJDBC-246 branch October 10, 2018 15:17
mp911de added a commit that referenced this pull request Feb 21, 2022
We now encapsulate prepared operations from the StatementFactory within PreparedOperation that renders SQL and provides binding values.

StatementFactory supports SELECT/INSERT/UPDATE/DELETE statement creation considering Dialect-specific rendering.
StatementFactory replaces String-based statement methods in ReactiveDataAccessStrategy.

PreparedOperation<Update> operation = accessStrategy.getStatements().update(entity.getTableName(), binder -> {
	binder.bind("name", "updated value");
	binder.filterBy("id", SettableValue.from(42));
});

databaseClient.execute().sql(operation).then();

Original pull request: #82.
mp911de pushed a commit that referenced this pull request Feb 21, 2022
Original pull request: #82.
mp911de added a commit that referenced this pull request Feb 21, 2022
We now apply bindings to a BindTarget that can be overridden without the need to implement all Statement methods.

PreparedOperation no longer has a direct dependency on R2DBC Statement.

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