Reputation: 10720
I'm looking at sqljocky for use with MySql, and checking to see how it "works". There doesn't appear to be any "C" code and it appears to use sockets.
Is that correct, and could someone who knows, elaborate a little bit for me?
Upvotes: 1
Views: 290
Reputation: 183
I wrote SQLjocky, and you are correct - there is no C code in SQLjocky, it is completely written in Dart, and uses sockets to communicate with the MySQL server. The protocol is documented to varying levels of usefulness at http://dev.mysql.com/doc/internals/en/client-server-protocol.html
Upvotes: 3