From 2fc8f35ea92da86ba8d23cbc575af2129ee5db6b Mon Sep 17 00:00:00 2001 From: richie Date: Wed, 21 Sep 2022 09:09:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 425339b..97d15b7 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,19 @@ operation.markAsFinish(tableId); ### 删除表(暂未实现) +```java +Authentication authentication = new Authentication("#key", "#secret"); +DatasourceOperation operation = new DatasourceOperation(authentication); +String tableId = "#待删除的表id"; +operation.deleteTable(tableId); +``` ### 删除所有表(暂未实现) +```java +Authentication authentication = new Authentication("#key", "#secret"); +DatasourceOperation operation = new DatasourceOperation(authentication); +operation.reset(); +``` ## API文档