jdbc
Here are 2,770 public repositories matching this topic...
-
Updated
Oct 31, 2021 - Java
-
Updated
Nov 16, 2021 - Java
-
Updated
Nov 16, 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
Aug 26, 2021 - Java
-
Updated
Oct 13, 2021 - Java
-
Updated
Nov 11, 2021 - Shell
-
Updated
Nov 10, 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 15, 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 10, 2021 - Java
-
Updated
Oct 9, 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."
With Hive connector
DROP TABLEis rejected on a view: