Skip to content

gchacaltana/PythonMvcMySQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

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

No packages published

Languages