| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Basic data handling with Java, MySQL and MongoDB
Libraries needed:
Given a database, this program is able to create a table pet if pet doesn't already exist.
mysql> describe pet;
| Field | Type | Null | Key | Default | Extra |
|---|---|---|---|---|---|
| name | varchar(20) | YES | NULL | ||
| owner | varchar(20) | YES | NULL | ||
| species | varchar(20) | YES | NULL | ||
| sex | char(1) | YES | NULL |
Other features of the program:
Compared to MySQL, MongoDB is more flexible regarding handling data.
Given a database test, the program is able to:
| Back | FazBrowse Home | New Git URL |