Questions tagged [kotlin-exposed]

Exposed is Kotlin's SQL library. Use with the [kotlin] tag

Exposed is a SQL library made by Jetbrains (the creators of Kotlin)

Exposed is a prototype for a lightweight SQL library written over JDBC driver for Kotlin language. It does have two layers of database access: typesafe SQL wrapping DSL and lightweight data access objects

245 questions
0
votes
1 answer

How to use Kotlin with H2 and SQLite in Intellij

When I try to use Kotlin in Intellij with either SQLite or H2, Intellij gives me this error: Exception in thread "main" java.lang.ClassNotFoundException: org.h2.Driver at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at…
Jonathan Dewein
  • 984
  • 3
  • 16
  • 34
-1
votes
1 answer

Add Custom Implementation to generate query with Exposed to use DB built-in function

I’m using Kotlin Exposed to interact MySQL in my service. Now I’m planning to create a new table, whose primary key is uuid converted to binary as binary(16) . In that case, when I execute each query, I need to trigger MySQL built-in function to…
lipsum
  • 919
  • 2
  • 13
  • 24
-1
votes
1 answer

Forming queries with N parameters using exposed

I have a list with N entries from which a would like to form a query that looks something like this. SELECT some_column FROM table WHERE name EQUALS queryEntry_1.name AND value EQUALS queryEntry_1.value OR name EQUALS queryEntry_2.name…
-1
votes
1 answer

Not able to create an exposed dropdown via kotlin. requireContext is asking for parameters

Checkout this image Did the job as suggested by material.io but ain't working.
-1
votes
1 answer

Can Kotlin Exposed be integrated with Spring Data JPA?

I would like to integrate Kotlin Exposed into a Kotlin application that is already using Spring Data JPA. The problem I have is that only want to use one Transaction Manager for my application, but currently I have to have two (one for JPA and…
1 2 3
16
17