SQLDelight Android Gradle Plugin

Gradle plugin for generating kotlin interfaces for sqlite files

Лицензия

Лицензия

Категории

Категории

Gradle Компиляция и сборка Square Прикладные библиотеки Financial
Группа

Группа

com.squareup.sqldelight
Идентификатор

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

android-gradle-plugin
Последняя версия

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

1.0.0-alpha5
Дата

Дата

Тип

Тип

jar
Описание

Описание

SQLDelight Android Gradle Plugin
Gradle plugin for generating kotlin interfaces for sqlite files
Ссылка на сайт

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

https://github.com/square/sqldelight/
Система контроля версий

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

https://github.com/square/sqldelight/

Скачать android-gradle-plugin

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

<!-- https://jarcasting.com/artifacts/com.squareup.sqldelight/android-gradle-plugin/ -->
<dependency>
    <groupId>com.squareup.sqldelight</groupId>
    <artifactId>android-gradle-plugin</artifactId>
    <version>1.0.0-alpha5</version>
</dependency>
// https://jarcasting.com/artifacts/com.squareup.sqldelight/android-gradle-plugin/
implementation 'com.squareup.sqldelight:android-gradle-plugin:1.0.0-alpha5'
// https://jarcasting.com/artifacts/com.squareup.sqldelight/android-gradle-plugin/
implementation ("com.squareup.sqldelight:android-gradle-plugin:1.0.0-alpha5")
'com.squareup.sqldelight:android-gradle-plugin:jar:1.0.0-alpha5'
<dependency org="com.squareup.sqldelight" name="android-gradle-plugin" rev="1.0.0-alpha5">
  <artifact name="android-gradle-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.squareup.sqldelight', module='android-gradle-plugin', version='1.0.0-alpha5')
)
libraryDependencies += "com.squareup.sqldelight" % "android-gradle-plugin" % "1.0.0-alpha5"
[com.squareup.sqldelight/android-gradle-plugin "1.0.0-alpha5"]

Зависимости

runtime (3)

Идентификатор библиотеки Тип Версия
com.squareup.sqldelight : core jar 1.0.0-alpha5
com.squareup.sqldelight : gradle-plugin jar 1.0.0-alpha5
org.jetbrains.kotlin : kotlin-stdlib-jdk7 jar 1.2.50

test (2)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12
com.google.truth : truth jar 0.30

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

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

SQLDelight

See the project website for documentation and APIs

SQLDelight generates typesafe kotlin APIs from your SQL statements. It verifies your schema, statements, and migrations at compile-time and provides IDE features like autocomplete and refactoring which make writing and maintaining SQL simple.

SQLDelight understands your existing SQL schema.

CREATE TABLE hockey_player (
  id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
  name TEXT NOT NULL,
  number INTEGER NOT NULL
);

It generates typesafe code for any labeled SQL statements.

intro.gif


SQLDelight supports a variety of dialects and platforms:

SQLite

MySQL (JVM)

PostgreSQL (JVM) (Experimental)

HSQL/H2 (JVM) (Experimental)

Snapshots

Snapshots of the development version (including the IDE plugin zip) are available in Sonatype's snapshots repository.

License

Copyright 2016 Square, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
com.squareup.sqldelight

Square

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

Версия
1.0.0-alpha5
1.0.0-alpha4
1.0.0-alpha3
1.0.0-alpha2
1.0.0-alpha1