- clint 0.5.1
- flask
The dependencies can be installed by simply use pipenv
.
- install pipenv.
pip install pipenv
- install dependencies
pipenv install
- enter virtual envirment
pipenv shell
Make sure currently in the pipenv or all dependencies are installed.
python shell.py
python web.py
create table student (
sno char(8),
sname char(16) unique,
sage int,
sgender char (1),
primary key ( sno )
);
create index stunameidx on student ( sname );
insert into student values ('12345678','wy',22,'M');
See more test cases at: test/sample.txt