From bf7be50d89353775a73735fb77ac64d60cdcae72 Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Mon, 11 Feb 2019 01:00:51 -0500 Subject: [PATCH] Correct readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c6d0eda..d537b68 100644 --- a/readme.md +++ b/readme.md @@ -497,7 +497,7 @@ At runtime using QueryMapper, you signal you want this by wrapping s with `Prepa At compile-time using JdbcMapper, you signal you want this in the SQL like `{clob:s}` ##### java.sql.Array ```java -ps.setRef(index, o); +ps.setArray(index, o); ``` ##### * If nothing else fits, we call setObject and cross our fingers with QueryMapper at runtime, this is a compile-time error