jdbc
Here are 2,968 public repositories matching this topic...
-
Updated
Feb 16, 2022 - Java
-
Updated
Feb 23, 2022 - Java
-
Updated
Feb 23, 2022 - Java
The .forall pattern is a great way to create an optional filter for a field that could be defined or not:
case class Person(name: String, age: Int)
val nameOpt: Option[String] = Some("Joe")
run { query[Person].filter(p => lift(nameOpt).forall(_ == p.name)) }
// SELECT p.name, p.age FROM Person p WHERE ? IS NULL OR ? = p.name
// (i.e. when nameOpt := None then the `WHERE ? IS NULL`-
Updated
Feb 19, 2022 - Java
1 issue description
2. fix bug, enhance....
3. git commit -m "issue name (#issue number)"
-
Updated
Feb 21, 2022 - Java
-
Updated
Feb 23, 2022 - Java
-
Updated
Feb 22, 2022 - Shell
-
Updated
Feb 14, 2022 - Kotlin
When using UNION, with ORDER BY or LIMIT within a subexpression's SELECT statement, PostgreSQL requires the SELECT statement be enclosed in parentheses: https://stackoverflow.com/a/24024639 However, the following QueryDSL code causes a syntax error against Postgres because it doesn't generate those parentheses:
val i = Item.syntax("i")
selectFrom(Item.as(i)).orderBy(i.id).u-
Updated
Feb 23, 2022 - Java
I'm submitting a ...
- bug report
- feature request
Context
The Changelog RRS feed can be found on the Changelog page:
https://jdbc.postgresql.org/documentation/changelog.html
Just above the section "Introduction and explanation of symbols". Direct link:
https://jdbc.postgresql.org/change
ScramTest fails
- statement redact for engine tab *** FAILED ***
"<!DOCTYPE html><html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/><link rel="stylesheet" href="/static/bootstrap.min.css" type="text/css"/><link rel="stylesheet" href="/static/vis-timeline-graph2d.min.css" type="text/css"/><link rel="stylesheet" href="/static/webui.css" type="text/css"/><li
-
Updated
Jan 1, 2022 - Java
-
Updated
Feb 22, 2022 - 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."
The current test
TestCassandraConnectorTesthas some issues: