Results 3 comments of Ricardo Andrade

Found my issue with Apple devices (a mistake apparently). Though I found out that actually I did not need to expose the port 1701 at all to make it work....

Sorry for the long delay, we decided to remove the unsigned types from our db and this become a minor issue. But I'm still interested in getting soci even better,...

Consider the following - MySQL - table: ``` SQL CREATE TABLE test (val TINYINT UNSIGNED); INSERT INTO test VALUES(1); ``` And the following soci code: ``` C++ soci::session sql(...); soci::rowset...