jacobg
                                            jacobg
                                        
                                    Adding those decoder_kwargs to each model field seems to be the only way to get the admin form field to save float/decimal values as numbers, rather than strings. Any way...
What's TimeZoneTime.zone for, if not for region?
FYI, looks like setDate also has this issue, as well as the other setter methods. ``` javascript dt = WallTime.UTCToWallTime(new Date('2013-03-15T00:00:00-0500'), 'America/New_York'); // after DST console.log(dt.getTimezoneOffset()); // correctly prints 240...
This is your puppy so you decide. But I think it is useful to emulate the native Date object with timezone-awareness, and TimeZoneTime does have reference to its timezone. There...
Thanks so much Jacob!
I recently started using TypeORM in my Cordova app, but I have legacy code that has been using the Cordova Sqlite plugin for years. This legacy code would call openDatabase...
And BTW, as the following article explains, sqlite seems to do perform reasonably well even with multiple concurrent writes, perhaps as long as it's not used on a server: http://charlesleifer.com/blog/sqlite-small-fast-reliable-choose-any-three-/
I tried creating a new connection for each request, but came across another problem. The `CordovaQueryRunner`, which inherits from `AbstractSqliteQueryRunner`, wraps transactions inside of `BEGIN TRANSACTION` and `COMMIT` statements. That...
Thanks @keenondrums. One concern about the monkey patch is that it removes concurrency for reads.