Skip to content

sqldelight/sqldelight

Folders and files

NameName
Last commit message
Last commit date
Feb 19, 2025
Jul 26, 2023
Apr 2, 2024
Oct 29, 2024
Jan 6, 2025
Mar 20, 2025
Oct 3, 2024
Jan 15, 2025
Mar 20, 2025
Sep 12, 2024
Jun 23, 2023
Oct 29, 2024
Oct 3, 2024
Sep 24, 2024
Mar 20, 2025
Mar 20, 2025
Sep 12, 2024
Nov 5, 2023
Apr 5, 2024
Nov 5, 2023
Nov 5, 2022
Sep 9, 2024
Apr 5, 2024
May 5, 2022
Feb 9, 2016
Oct 3, 2024
Mar 31, 2023
Sep 9, 2024
Feb 26, 2025
Jul 11, 2024
Jul 11, 2024
Oct 3, 2024
Sep 12, 2024

Repository files navigation

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)

HSQL/H2 (JVM) (Experimental)

Snapshots

Snapshots of the development version (including the IDE plugin zip) are available in Sonatype's snapshots repository. Note that the coordinates are all app.cash.sqldelight instead of com.squareup.cash for the 2.0.0+ SNAPSHOTs.

Documentation pages for the latest snapshot version can be found here.

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.