Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smileexpression/database-systems-laboratory
A repo to store something of database systems lab
https://github.com/smileexpression/database-systems-laboratory
csharp database dotnet library-management-system mysql sql sysu-course
Last synced: 3 days ago
JSON representation
A repo to store something of database systems lab
- Host: GitHub
- URL: https://github.com/smileexpression/database-systems-laboratory
- Owner: smileexpression
- License: mit
- Created: 2023-10-23T14:16:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-23T06:53:52.000Z (10 months ago)
- Last Synced: 2024-10-12T13:41:32.968Z (about 1 month ago)
- Topics: csharp, database, dotnet, library-management-system, mysql, sql, sysu-course
- Language: C#
- Homepage:
- Size: 966 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Database-Systems-Laboratory
A repo to store something of database systems lab## Tips
If you want to use `.net` code, please create a file name `config.ini`, and add your own MySql information such as:
```ini
[mysql]
server = "your server"
database = "the database you want to use"
UID = "user"
PWD = "password"
port = "port"
```## 吐槽
`PowerDesigner`添加外键的时候,如果想要自动将主表的主键添加到从表的属性里,从表任一属性的code不能和主表的主键code相同。
例:reader_category(**id**, ...)和reader_info(**id**, ...)这种命名方式不行。