jdbc
Here are 2,797 public repositories matching this topic...
-
Updated
Nov 23, 2021 - Java
-
Updated
Nov 26, 2021 - Java
-
Updated
Nov 26, 2021 - 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
Aug 2, 2021 - Java
1 issue description
2. fix bug, enhance....
3. git commit -m "issue name (#issue number)"
-
Updated
Nov 26, 2021 - Java
-
Updated
Nov 24, 2021 - Java
-
Updated
Nov 23, 2021 - Shell
-
Updated
Nov 26, 2021 - Kotlin
Currently the CodeGenerator provides utility methods such as findBy/findAll.
It would be great to provide a method such as:
def foreach(where: SQLSyntax)(item: ${className} => Unit)(implicit session: DBSession$defaultAutoSession): Unit = {
sql"select xxx where $${where}".foreach { record => item(record) }
}
-
Updated
Nov 23, 2021 - 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
Describe the proposal
When a SparkConf is invalid for launching our engines, it is better to fail fast instead of waiting for Spark to check while engine bootstrapping.
Motivation
- Save time to create an invalid
-
Updated
Nov 25, 2021 - Java
-
Updated
Nov 17, 2021 - 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."


We should use
MockConnectorto simulate connector that support missing columns on insert and test if row filtering is properly handled if columns are missing during the insert but used in row filters.Related to: #10006 and #10005