jdbc
Here are 1,862 public repositories matching this topic...
We have Javadoc published for each patch release, e.g.:
- https://www.jooq.org/javadoc/3.13.0/org.jooq/org/jooq/conf/RenderQuotedNames.html
- https://www.jooq.org/javadoc/3.13.1/org.jooq/org/jooq/conf/RenderQuotedNames.html
The latest version of the Javadoc for a minor release is currently using an x
for the patch release number:
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)
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
The first query check (the one where there are issues) in
https://tpolecat.github.io/doobie/docs/06-Checking.html
(/modules/docs/src/main/tut/docs/06-Checking.md)
returns the same output as the second one (the one where issues are fixed).
-
Updated
May 21, 2020 - Java
The build instructions do not mention docker among prerequisites:
https://github.com/xerial/sqlite-jdbc/blob/master/README_BUILD.md
Locally (Linux Mint) I had to install docker and then adding the local user to the docker group as mentioned in this article to allow the
-
Updated
May 21, 2020 - Scala
I think it's a bug need to be fixed
By default it's like
"""
insert into ParserRule(
name,
conf
) values (
{name},
{conf}
)
"""
But we should add the special comma to it
"""
insert into ParserRule(
`name`,
`conf`
ebean should automatically direct read request to reader instance of aws aurora cluster and write request to writer instance
developer should have an option of enable/disable using properties file.
-
Updated
May 25, 2020 - Java
-
Updated
May 25, 2020 - Kotlin
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
Kafka Connector stop if connection with database break with Sink Connector. There should be retry in Sink connector as well. This is available in source connector
-
Updated
Nov 10, 2019 - Clojure
-
Updated
May 4, 2020 - Java
Please add some contributing guidelines for this project, including code style.
Since the current code styles are different between the contributors, and there are patches with many useless changes in the import order, it might be advisable to enforce some rules via a [checkstyle](http://checkstyle.sourceforge.ne
-
Updated
Apr 12, 2019 - Java
-
Updated
May 15, 2020 - Java
-
Updated
May 9, 2020 - Java
-
Updated
Apr 26, 2020 - Java
-
Updated
May 13, 2020 - Clojure
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
-
Updated
May 22, 2020 - Java
Improve this page
Add a description, image, and links to the jdbc topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the jdbc topic, visit your repo's landing page and select "manage topics."
Hi,
looks like the metrics provider by Hikari has changed in recent version, yet the documentation in this project hasn't been updated since 2015, could you please update the documentation? Thanks!