Robert Mulley

Results 4 issues of Robert Mulley

Speed up Updates by batching them as explained at http://stackoverflow.com/questions/1006969/why-are-batch-inserts-updates-faster-how-do-batch-updates-work ``` sql UPDATE mytable SET mytext = myvalues.mytext, myint = myvalues.myint FROM ( VALUES (1, 'textA', 99), (2, 'textB', 88),...

enhancement

Ideally a user should be able to drop queries, probably of a specified struct type, into a channel and allow the go-fast-sql library to handle flushing behind the scenes.

enhancement

This seems to only happen when there is an invalid date in the database. For example, I had the date '1997-00-00' in our database in a field of type date,...