Skip to content
#

jdbc

Here are 1,862 public repositories matching this topic...

bovquier
bovquier commented Aug 8, 2019

requeryVersion = '1.6.0'
requeryVersion = '1.6.1'

E/BaseViewModel: java.sql.SQLNonTransientConnectionException
    io.requery.PersistenceException: java.sql.SQLNonTransientConnectionException
        at io.requery.sql.EntityDataStore.checkConnectionMetadata(EntityDataStore.java:588)
        at io.requery.sql.EntityDataStore$DataContext.getTransactionMode(EntityDataStore.java:747)
deusaquilus
deusaquilus commented Aug 22, 2019

This pattern works and allows you to use run-time specified schemas, so I think it should be documented:

def myQuery[T:SchemaMeta] = quote { query[T] }
case class Person(id:Int, name:String)
run(myQuery[Person])
// SELECT x.id, x.name FROM Person x

(If we choose to some-day support Java-beans, it may also be useful for that)

@getquill/maintainers

zachariahyoung
zachariahyoung commented Mar 19, 2020

getting the following error message.

ksql> CREATE STREAM CUSTOMERS_SRC WITH (KAFKA_TOPIC='asgard.public.customers', VALUE_FORMAT='AVRO'); Avro schema for message values on topic asgard.public.customers does not exist in the

mphouston
mphouston commented Jan 28, 2020

This is a suggested addition to the Micronaut-Data docs on @transactional. Please consider adding this note to section "6.1 Transactions":

NOTE: The javax.transaction.Transactional annotation is only supported in repositories and beans processed by Micronaut. Using @transactional on other methods/classes does not initiate a transaction. See "Programmatic Transactions" for hints on how to use

Improve this page

Add a description, image, and links to the jdbc topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the jdbc topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.