Kenneth Shaw

Results 127 comments of Kenneth Shaw

`usql` was originally designed around Go's standard `database/sql` and `database/sql/driver`, and unfortunately most non-relational / NoSQL databases do not have a compatible driver. In hindsight, this was a (minor) design...

To clarify: yes, I hope `usql` one day supports every single database on the planet. I do not have any specific ETA on when that database X or database Y...

@calebeaires + @jimmyegd I don't have Windows 7 + SQL Server 2008 to test this with. I really would need more help from you to debug and figure out the...

@ademariag always open to PRs that are well written. I'm not sure how you'd be able to not use some kind of a proxy, which on the surface appears that's...

@thomasaarholt Yes, looking into that now.

It's worth noting, however, that it is indeed working, as demonstrated when using the `-c` command-line option: ```sh $ usql -c '\echo -n foo' fooken@ken-desktop:~/src/go/src/github.com/xo/usql$ ```

What version of MySQL are you using?

Executing a stored procedure is probably not possible at the moment. `usql` can be used to define schemas, stored procedures, views, etc. on Oracle (simply escape `;` as `\;`): ```sql...

I'd like to echo @nineinchnick -- perhaps one day `usql` will be ready to deal with bulk-loading data into any database, unfortunately it isn't ready for that yet. I'm quite...

@pricheal + @nineinchnick I just pushed a commit changing to `bufio.Reader.ReadLine`. I don't have a multi-gigabyte file to test with, but I'll try to generate one later. My guess is...