Mikkel
Member since Mar 13, 2017
- Profile: /members/13468-mikkel.htm
- Comments: 1
Recent Blog Comments By Mikkel
-
Casting Bit Fields To Booleans Using The Node.js MySQL Driver
Posted on Mar 13, 2017 at 5:50 PM
My 'bools' were TinyInts. This is how I ended up implementing `typeCast` (ClojureScript, but easy to translate to js): ``` (fn [field use-default-type-casting] (if (and (= "TINY" (.-type field)) (= 1 (.-length field))) ... read more »