You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 4, 2019. It is now read-only.
there is the Nullable formattable which allows you to have use an Option when formatting. it will result in 'null' in the case of None and otherwise the formatted value.
I don't know why but it doesn't work for me wihthout this new definitions.
When I try to insert an Option[Int] Scala throws the following error :
type mismatch; found: Option[Int] required: net.noerd.prequel.Formattable
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The SQLFormatterImplicits doesn't provide a support for values encapsulated in an Option.
Here is the workaround I'm currently using :
Do you have a better idea ?
Could it be added in the master branch ?
The text was updated successfully, but these errors were encountered: