From c3f420b2ac6217eedd65e93c7865a7953717d5cc Mon Sep 17 00:00:00 2001 From: "junjie.jiang" Date: Fri, 5 May 2023 20:34:37 +0800 Subject: [PATCH] Update readme Signed-off-by: junjie.jiang --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d32696d..23adde4 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ for data in DataLoader(ops.data_source.sql('sqlite:///./sqlite.db')): print(p(data).to_list(kv_format=True)) # batch -for data in DataLoader(ops.data_source.glob('sqlite:///./sqlite.db'), batch_size=10): +for data in DataLoader(ops.data_source.sql('sqlite:///./sqlite.db'), batch_size=10): p.batch(data) ``` @@ -62,7 +62,7 @@ If you want to query specific columns, use the column names and separate them wi Where conditional statement, for example: id > 100 -***limit:* *int* +***limit:*** *int* The default value is 500. If set to None, all data will be returned.