jdbc-starter

JDBC Starter

Лицензия

Лицензия

Группа

Группа

com.github.enesusta
Идентификатор

Идентификатор

jdbc-starter
Последняя версия

Последняя версия

1.0.5
Дата

Дата

Тип

Тип

jar
Описание

Описание

jdbc-starter
JDBC Starter
Ссылка на сайт

Ссылка на сайт

https://github.com/enesusta/jdbc-starter
Система контроля версий

Система контроля версий

http://github.com/enesusta/jdbc-starter

Скачать jdbc-starter

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.enesusta/jdbc-starter/ -->
<dependency>
    <groupId>com.github.enesusta</groupId>
    <artifactId>jdbc-starter</artifactId>
    <version>1.0.5</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.enesusta/jdbc-starter/
implementation 'com.github.enesusta:jdbc-starter:1.0.5'
// https://jarcasting.com/artifacts/com.github.enesusta/jdbc-starter/
implementation ("com.github.enesusta:jdbc-starter:1.0.5")
'com.github.enesusta:jdbc-starter:jar:1.0.5'
<dependency org="com.github.enesusta" name="jdbc-starter" rev="1.0.5">
  <artifact name="jdbc-starter" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.enesusta', module='jdbc-starter', version='1.0.5')
)
libraryDependencies += "com.github.enesusta" % "jdbc-starter" % "1.0.5"
[com.github.enesusta/jdbc-starter "1.0.5"]

Зависимости

compile (6)

Идентификатор библиотеки Тип Версия
org.xerial : sqlite-jdbc jar 3.30.1
com.github.enesusta : edevat jar 1.0.0
com.zaxxer : HikariCP jar 3.4.2
org.postgresql : postgresql jar 42.2.12
commons-dbcp : commons-dbcp jar 1.4
mysql : mysql-connector-java jar 8.0.18

test (2)

Идентификатор библиотеки Тип Версия
org.junit.jupiter : junit-jupiter-engine jar 5.3.2
org.hamcrest : hamcrest-all jar 1.3

Модули Проекта

Данный проект не имеет модулей.

javadoc

Install

<dependency>
  <groupId>com.github.enesusta</groupId>
  <artifactId>jdbc-starter</artifactId>
  <version>1.0.5</version>
</dependency>

Example:

JdbcConfiguration configuration = new JdbcConfiguration.JdbcConfigurationBuilder()
            .username("username")
            .password("password")
            .type(DatabaseType.POSTGRE)
            .host("localhost")
            .selectedDatabase("docker")
            .options(
                Arrays.asList(new JdbcOption(ConnectionOptions.CHARACTER_ENCODING, "utf8"))
            )
//            .jdbcUrl("jdbc:postgresql://localhost:5432/docker?characterEncoding=utf8")
            .build();

        jdbcDataSource = new HikariJdbcDataSource(configuration);
        dataSource = jdbcDataSource.getDataSource();

Версии библиотеки

Версия
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0