From c14db2efdab52a35ac39d38c76e1329cdcfaf0f6 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Tue, 23 Feb 2016 02:05:52 -0500 Subject: [PATCH] More README tweaks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c4e1d5e..a02c8d6d 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ To insert an entry into the database, execute a second SQL command: "INSERT INTO foo(name) VALUES(\"fiona\")" ]' -The response is: +The response is of the form: [{"last_insert_id":1,"rows_affected":1}] @@ -82,7 +82,7 @@ Bulk updates are supported. To execute multipe statements in one HTTP call, simp "INSERT INTO foo(name) VALUES(\"sinead\")" ]' -The response is: +The response is of the form: [{"last_insert_id":2,"rows_affected":1},{"last_insert_id":3,"rows_affected":1}]