Buzzardo / r2dbc-spi

Service Provider Interface for R2DBC Implementations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reactive Relational Database Connectivity Service Provider Interface (R2DBC SPI)

This project contains the service provider interface for R2DBC implentations. This interface is intended to be terse to simplify implementation by database vendors and should not be used directly. It is expected that client libraries would be built upon this interface in order to expose a more humane interface for tools and developers to use.

Maven

Both milestone and snapshot artifacts (library, source, and javadoc) can be found in Maven repositories.

<dependency>
  <groupId>io.r2dbc</groupId>
  <artifactId>r2dbc-spi</artifactId>
  <version>1.0.0.M6</version>
</dependency>

Artifacts can bound found at the following repositories.

Repositories

<repository>
    <id>spring-snapshots</id>
    <name>Spring Snapshots</name>
    <url>https://repo.spring.io/snapshot</url>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
</repository>
<repository>
    <id>spring-milestones</id>
    <name>Spring Milestones</name>
    <url>https://repo.spring.io/milestone</url>
    <snapshots>
        <enabled>false</enabled>
    </snapshots>
</repository>

License

This project is released under version 2.0 of the Apache License.

About

Service Provider Interface for R2DBC Implementations

License:Apache License 2.0


Languages

Language:Java 98.6%Language:HTML 1.0%Language:Shell 0.4%