From 544f90087001b1e535bcd87ebfce94f40753e09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BA=90=E6=96=87=E9=9B=A8?= <41315874+fumiama@users.noreply.github.com> Date: Wed, 4 May 2022 13:52:21 +0800 Subject: [PATCH] update progress --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 892887a..77a33bc 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,13 @@ A simple and lightweight database written in C Most part of this README and the docs in `api` folder is written in Chinese. If you want to use it but have any problem in language, please contact me directly through the issues. ## 支持的功能 -- [ ] 创建[数据库文件](/api/dbfile.md#数据库文件格式)和[表](/api/dbfile.md#表) +- [x] 创建[数据库文件](/api/dbfile.md#数据库文件格式)和[表](/api/dbfile.md#表) - [ ] 删除表 -- [ ] 对主键、外键进行[索引](/api/index.md) -- [ ] [插入表项](/api/table.md#表项的增加) -- [ ] 按索引修改表项 +- [x] 对主键进行[索引](/api/index.md) +- [ ] 对外键进行[索引](/api/index.md) +- [x] [插入表项](/api/table.md#表项的增加) +- [x] 查询表项 +- [x] 按索引修改表项 - [ ] 按索引[删除表项](/api/table.md#表项的删除) - [ ] 对非主键(无[unique约束](/api/types.md#类型修饰符))进行[索引](/api/index.md)