GitHub - iandygit/PythonMvcMySQL: Example describes how to use Python with MySQL · GitHub
Skip to content

iandygit/PythonMvcMySQL

 
 

Folders and files

Repository files navigation

PythonMvcMySQL

Example describes how to use Python with MySQL.

Database example:

create database bookstore charset 'utf8';

create table categories (id_category int not null auto_increment primary key,name varchar(45) not null);

create table books (id_book bigint not null auto_increment primary key, id_category int not null, name varchar(200) not null, price decimal(7,2) default 0,date_created datetime);

About

Example describes how to use Python with MySQL

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

Languages

  • Python 100.0%