You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you get a "not found" exception, you might need to edit the repos.txt of your Vert.x installation to use https. See [issue 35](https://github.com/vert-x/mod-mysql-postgresql/issues/35) (thanks, @dparshin!).
23
23
@@ -65,7 +65,7 @@ The module will reply to all requests. In the message, there will be either a `"
65
65
]
66
66
}
67
67
68
-
*`rows` gives you the number of rows affected by the statement sent to the server. Bear in mind that MySQL only shows a row count on changed rows (DELETE, UPDATE, INSERT statements) whereas PostgreSQL also shows the number of SELECTed rows here.
68
+
*`rows` gives you the number of rows affected by the statement sent to the server. Bear in mind that PostgreSQL 8.4 only shows a row count on changed rows (DELETE, UPDATE, INSERT statements) whereas PostgreSQL 9.x and MySQL also show the number of SELECTed rows here.
69
69
*`message` is a status message from the server.
70
70
*`fields` contains the list of fields of the selected table - Only present if the request resulted in a result set.
71
71
*`results` contains a list of rows - Only present if the request resulted in a result set.
0 commit comments