From 689ccc206928b535e5e124a2250a96ab9cb1d45e Mon Sep 17 00:00:00 2001 From: atercattus Date: Wed, 9 Jun 2021 19:40:14 +0300 Subject: [PATCH] update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9820a8428..2b6c73c24 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ Tested MySQL versions for the client include: - 5.7.x - 8.0.x -### Example for SELECT streaming (v.1.1.1) +### Example for SELECT streaming (v1.1.1) You can use also streaming for large SELECT responses. The callback function will be called for every result row without storing the whole resultset in memory. `result.Fields` will be filled before the first callback call. @@ -243,7 +243,7 @@ err := conn.ExecuteSelectStreaming(`select id, name from table LIMIT 100500`, &r // ... ``` -### Example for connection pool (v.1.3.0) +### Example for connection pool (v1.3.0) ```go import (