From f0f3c99aaf6d5e499f16f815cc1a3f8b14bf8d7a Mon Sep 17 00:00:00 2001 From: richie Date: Fri, 23 Sep 2022 07:22:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3=E8=AF=B4?= =?UTF-8?q?=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e0132a..55f3364 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,17 @@ String tableId = operation.createTable("HelloTable", "#分组Id(可选)"); ### 更新表数据 -数据的格式采用csv文件存储,格式如下,假设文件名为data.csv,其内容为: +数据的格式采用csv文件存储,格式如下,假设文件名为data.csv,其内容为(其中第一行是表头,第一行之后是表数据): ``` "合同签约时间(Year Month Day)","城市","国家","客户名称","省份","回款金额","合同金额" "18/1/2016","杭州市","中国","浙江臻善科技有限公司","浙江省","1200000","1200000" +"1/8/2016","郑州市","中国","杭州明佑电子有限公司","河南省","100800","100800" +"1/4/2016","西安市","中国","西北工业大学","陕西省","430000","430000" ``` +**注意:** 当前暂时不支持追加数据,仅支持全部替换数据。 + ```java Authentication authentication = new Authentication("#key", "#secret"); DatasourceOperation operation = new DatasourceOperation(authentication);