Skip to content

Arseni1919/WEB_Course_Lectures_and_Assignments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Material for teaching Web Development in BGU - IEM faculty

Flask

Flask Docs CS50 2020 - Lecture 9 - Flask | Harvard

Flask Blueprint

Flask Blueprint | Real Python

Jinja2

Jinja | Real Python

Jinja Docs

MySQL information

First, you will need to install MySQL on a computer.

Then, install mysql.connector.

You need to create schema and then a certain table inside this schema. Here is the cheatsheet to help you with the basic commands.

Example of creating a table:

CREATE TABLE table_try1 (
  id int auto_increment primary key,
  name varchar(255),
  email text,
  create_date timestamp default CURRENT_TIMESTAMP,
  password varchar(120)
);

Check syntax of MySQL. For example here:

You can explore all the possibilities of MySQL here.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages