DB Table

DB Table is an implementation of the Guava Table interface, backed by JDBI.

Группа

Группа

com.jamierf.db-table
Идентификатор

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

db-table
Последняя версия

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

0.1
Дата

Дата

Тип

Тип

pom
Описание

Описание

DB Table
DB Table is an implementation of the Guava Table interface, backed by JDBI.
Ссылка на сайт

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

https://github.com/reines/db-table
Система контроля версий

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

https://github.com/reines/db-table

Скачать db-table

Имя Файла Размер
db-table-0.1.pom 2 KB
Обзор

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

<!-- https://jarcasting.com/artifacts/com.jamierf.db-table/db-table/ -->
<dependency>
    <groupId>com.jamierf.db-table</groupId>
    <artifactId>db-table</artifactId>
    <version>0.1</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.jamierf.db-table/db-table/
implementation 'com.jamierf.db-table:db-table:0.1'
// https://jarcasting.com/artifacts/com.jamierf.db-table/db-table/
implementation ("com.jamierf.db-table:db-table:0.1")
'com.jamierf.db-table:db-table:pom:0.1'
<dependency org="com.jamierf.db-table" name="db-table" rev="0.1">
  <artifact name="db-table" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.jamierf.db-table', module='db-table', version='0.1')
)
libraryDependencies += "com.jamierf.db-table" % "db-table" % "0.1"
[com.jamierf.db-table/db-table "0.1"]

Зависимости

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11

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

  • db-table-core
  • db-table-jackson

DB Table

Build Status Maven Central

DB Table is an implementation of the Guava Table interface, backed by JDBI. It is designed and tested against the Java SQL database H2, though with some minor dialect tweaks should work on any supported by JDBI.

DB Table can be found in maven central.

Installation

<dependency>
    <groupId>com.jamierf.db-table</groupId>
    <artifactId>db-table-jackson</artifactId>
    <version>...</version>
</dependency>

Usage

final Handle handle = DBI.open("jdbc:h2:example.db");
final Table<String, String, String> table = new JacksonDbTableBuilder(handle)
    .build("table_name", String.class, String.class, String.class);
table.put("row", "column", "value");

License

Released under the Apache 2.0 License.

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

Версия
0.1