Giter Site home page Giter Site logo

jangelsb / webdevproj Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mushka/webdevproj

0.0 2.0 0.0 6.43 MB

Wouldn't you like to know

HTML 3.64% CSS 5.79% C 5.34% Makefile 0.48% Java 79.43% JavaScript 1.34% Python 0.17% SQLPL 3.48% Shell 0.34%

webdevproj's Introduction

WebDevProj

Setting up mysql database via mysql
  1. Create database moviedb
    • mysql> create database moviedb3;
  2. Use database
    • mysql> use moviedb3;
  3. Import schema
    • mysql> source ./createtable.sql
  4. Populate database
    • mysql> source ./data.sql;
Setting up mysql database via shell
  1. Create database moviedb
    • shell> echo "create database moviedb;" | mysql -u root -p
  2. Import schema
    • shell> mysql -u root -p -D moviedb < createtable.sql
  3. Populate database
    • shell> mysql -u root -p -D moviedb < data.sql
Useful mysql commands:
  • show databases;
  • show tables;
  • use <dbname>;
  • describe <dbname>.<tablename>; (ex. describe moviedb.movies;)
Commands to use terminal interface
  1. To compile:

    • shell> make
  2. To run:

    • shell> make r
  3. To compile and run:

    • shell> make run
  4. To remove class files:

    • shell> make clean

webdevproj's People

Contributors

jangelsb avatar jdalpert avatar mushka avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.