Interface R2dbcSchemaHandler
public interface R2dbcSchemaHandler
The schema handler for R2DBC.
- Since:
- 3.9.0
- Author:
- Denis Stepanov
- 
Method SummaryModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<Void>createSchema(io.r2dbc.spi.Connection connection, Dialect dialect, String name) Creates a new schema.org.reactivestreams.Publisher<Void>Uses the given schema..
- 
Method Details- 
createSchemaorg.reactivestreams.Publisher<Void> createSchema(io.r2dbc.spi.Connection connection, Dialect dialect, String name) Creates a new schema.- Parameters:
- connection- The R2DBC connection
- dialect- The dialect
- name- The schema name
- Returns:
- The publisher
 
- 
useSchemaorg.reactivestreams.Publisher<Void> useSchema(io.r2dbc.spi.Connection connection, Dialect dialect, String name) Uses the given schema..- Parameters:
- connection- The R2DBC connection
- dialect- The dialect
- name- The schema name
- Returns:
- The publisher
 
 
-