Skip to content

Commit 6762e0b

Browse files
committed
Update README.md
1 parent fa48088 commit 6762e0b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ This Vert.x module uses the https://github.com/mauricio/postgresql-async drivers
66

77
* Vert.x 2.1+ (with Scala language module v1.1.0+)
88
* A working PostgreSQL or MySQL server
9-
* For testing PostgreSQL: A 'testdb' database on a local PostgreSQL install and a user called 'vertx'
10-
* For testing MySQL: A 'testdb' database on a local MySQL install and a user called 'root'
9+
* For testing PostgreSQL: A `testdb` database on a local PostgreSQL install and a user called `vertx`
10+
* For testing MySQL: A `testdb` database on a local MySQL install and a user called `root`
1111

1212
## Installation
1313

1414
Depending on your Scala version, you should download the specific version. If you're using Scala 2.10.x:
1515

16-
`vertx install io.vertx~mod-mysql-postgresql_2.10~0.3.0-SNAPSHOT`
16+
`vertx install io.vertx~mod-mysql-postgresql_2.10~0.3.0`
1717

1818
If you're using Scala 2.11.x:
1919

20-
`vertx install io.vertx~mod-mysql-postgresql_2.11~0.3.0-SNAPSHOT`
20+
`vertx install io.vertx~mod-mysql-postgresql_2.11~0.3.0`
2121

2222
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!).
2323

@@ -65,7 +65,7 @@ The module will reply to all requests. In the message, there will be either a `"
6565
]
6666
}
6767

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.
6969
* `message` is a status message from the server.
7070
* `fields` contains the list of fields of the selected table - Only present if the request resulted in a result set.
7171
* `results` contains a list of rows - Only present if the request resulted in a result set.

0 commit comments

Comments
 (0)