python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
'No suitable driver found..' on AWS, works locally
I made a ktor application using exposed for db stuff and it works perfectly fine on my desktop, however when I deploy it on an AWS EC2 instance I get following error
Exposed - Transaction attempt #0 ...
000
Votes: 0
Answers: 1
Can't connection DB use ktor application
I try start ktor application with postgresql database. For it i used docker compose. My docker-compose.yml.
version: '3.0'
services:
ktor-sample:
build: ./
command: ./ktor-sample
...
user1854307
Votes: 0
Answers: 1
Nullable CompositeMoneyColumn, how to assign a nullable MonetaryAmount?
I had a column like this:
val notNullableAmount = compositeMoney(DECIMAL_PRECISION,
DECIMAL_SCALE,
"principal_sum",
"principal_sum_currency")
In this case I can assign...
Milo van der Zee
Votes: 0
Answers: 2
How to get the inserted row id in Kotlin Exposed inserting with raw sql?
i am inserting a row in a table with kotlin exposed using a raw sql.
Is it possible to return the row id?
val sql: String =
"""
INSERT INTO customer (name, city) VALUES ('Tom', 'Dublin...
nusmanov
Votes: 0
Answers: 1