dave08
12/13/2022, 3:01 PMdave08
12/13/2022, 3:01 PMdave08
12/13/2022, 4:26 PMdave08
12/13/2022, 4:37 PMdave08
12/26/2022, 10:31 AMdave08
12/26/2022, 2:10 PMToshihiro Nakamura
12/29/2022, 3:03 AMdave08
01/02/2023, 12:28 PMdave08
01/03/2023, 5:01 PMEntityStore
would have been better if they were generated and defined ONCE and not just when trying to retrieve data... one can easily make a mistake and use the wrong thing as the one and the many... when declaring the entities and relations, we tend to check the db structures and make sure the relations are right, from then on, the querying should only give the RIGHT options for the situation...dave08
01/03/2023, 5:03 PMToshihiro Nakamura
01/07/2023, 3:48 AMdave08
01/10/2023, 11:32 AMdave08
01/10/2023, 11:37 AMString
field?dave08
01/10/2023, 11:46 AMString
... does that mean that it's also supported by Komapper?dave08
01/10/2023, 11:47 AMdave08
01/11/2023, 1:12 PMdave08
01/11/2023, 1:13 PMdave08
01/11/2023, 1:14 PMdave08
01/12/2023, 2:23 PMdave08
01/12/2023, 2:24 PMdave08
01/12/2023, 2:26 PM@KomapperColumn
would receive an extra parameter that allows to hard code the db type w/o inducing it from the field type...dave08
01/12/2023, 2:39 PMdave08
01/12/2023, 2:41 PMdave08
01/12/2023, 4:45 PM@KomapperEntity
data class FooEntity(@KomapperType(ClobStringType::class) val sometext: String)
S.
01/13/2023, 2:58 PMreturnGeneratedKeys
from the options here onDuplicateKeyUpdate().multiple().options
supposed to do? The query still returns a single Long value. Essentially I'm trying to bulk insert and retrieve all IDs with postgresqlToshihiro Nakamura
01/15/2023, 4:40 AMzt
01/15/2023, 4:59 AMGuild
object that has a MarkovConfig
dave08
01/15/2023, 1:41 PMdave08
01/15/2023, 1:41 PMMeta.all
or Meta.allEntities
?dave08
01/17/2023, 11:27 AMdave08
01/17/2023, 11:27 AMToshihiro Nakamura
01/17/2023, 11:52 AMval connectionFactory = object : ConnectionFactory {
override fun create(): Publisher<out Connection> {
// return existing connection
}
override fun getMetadata(): ConnectionFactoryMetadata {
// ...
}
}
val db = R2dbcDatabase(connectionFactory, H2R2dbcDialect())
dave08
01/17/2023, 11:54 AMToshihiro Nakamura
01/17/2023, 12:04 PMflowOf(connection).asPublisher()
dave08
01/17/2023, 12:05 PM