MySQL and PHPMyAdmin 1.

Slides:



Advertisements
Similar presentations
MY NCBI (module 4.5). MODULE 4.5 PubMed/How to Use MY NCBI Instructions - This part of the: course is a PowerPoint demonstration intended to introduce.
Advertisements

MY NCBI (module 4.5). MODULE 4.5 PubMed/How to Use MY NCBI Instructions - This part of the: course is a PowerPoint demonstration intended to introduce.
MY NCBI (module 4.5). MODULE 4.5 PubMed/How to Use MY NCBI Instructions - This part of the: course is a PowerPoint demonstration intended to introduce.
Type the address harding
HELP GUIDE NEW USER REGISTRATION (SLIDE 2) TAKING A QUIZ (SLIDE 8) REVIEWING A QUIZ (SLIDE 17) GROUP MEMBERSHIP (SLIDE 26) CREATING QUIZZES (SLIDE 31)
DIMES Planner The DIMES Project Tel Aviv University October-2010.
How to post to Wordpress Chruton Budd. Click on the Login link.
Install WordPress with Xampp. By With Thanks to: Rupesh Kumar.
Access Tutorial 8 Sharing, Integrating, and Analyzing Data
Lecture 3 – Data Storage with XML+AJAX and MySQL+socket.io
Session 5: Working with MySQL iNET Academy Open Source Web Development.
Recruitment Office Procedures Job Posting Requests Creating a Search Committee –Adding Search Committee MembersAdding Search Committee Members –Designating.
1 MySQL and phpMyAdmin. 2 Navigate to and log on (username: pmadmin)
Welcome to the Second Tutorial Welcome to the second part of this information system website tutorial! This tutorial is for church planters. If you’d like.
MySQL. MySQL is a Relational Database Management System (RDBMS) that runs as a server providing multiuser access to a number of databases. A third party.
SYST Web Technologies SYST Web Technologies Databases & MySQL.
Week 7. Lecture 2 Functions, Arrays, PHP&MySQL. Function with More than one argument and a return statement For a function to return a value, the return.
1. Profile settings 2. Messaging system 3. Downloading files 4. Uploading files 5. Creating groups 6. Calendar events.
Present :Arezoo Mollahasani. Step 1  Define your server connection Open MySQL WorkBench and click New Server Instance on the right of the window.
Moodle with Style Integrating new technologies to empower learning and transform leadership.
Intro to MySQL 1. Open a browser and enter the following address: It should lead to a log in screen. If your name is.
Microsoft Access 2010 Chapter 10 Administering a Database System.
Access Forms and Queries. Entering Data in Your Table  You can add data to your table in Datasheet view, by typing in the columns and rows.  This.
Site Training Installation. Navigate to location of the install package Important – Launch the e-ISuite Installer using your agency’s install protocol.
PHP getting data from a MySQL database. Replacing XML as data source with MySQL Previously we obtained the data about the training session from an XML.
Exporting a database to a sql script 1. Getting to the command-line in XAMPP. Go to All Programs/XAMPP/XAMPP Control Panel. Click on Shell. 2.
Creating a simple database This shows you how to set up a database using PHPMyAdmin (installed with WAMP)
Amy Jo Harrell 2006 Making your own web site Yes, I mean you!
Steps to Install VirtueMart 1. Setup Database 2. Download VirtueMart 3. Setup VirtueMart 4. Test installation Prerequisites: 1. XAMPP installation complete.
Signing a Document Digitally Click when you are ready to begin the tutorial.
Access Queries and Forms. Adding a New Field  To insert a field after you have saved your table, open Access, and open the table  It is easier to add.
Maryknoll Wireless Network Access Steps for Windows 7 As of Aug 20, 2012.
Software-Projekt 2008 Seminarvortrag“Short tutorial of MySql“ Wei Chen Verena Honsel.
Wordpress. What is Wordpress? Wordpress is a content management system. It is free and easy to use. It allows you to build dynamic websites It is built.
MySQL and PHPMyAdmin 1. Make sure your MySQL service is running. If using XAMPP, open the control panel. If the button for MySQL says Start, click it.
COM621: Advanced Interactive Web Development Lecture 10 PHP and MySQL.
The creation and upload of the Single as is format
Access Tutorial 2 Building a Database and Defining Table Relationships
Intro to WordPress (Using XAMPP)
Y.-H. Chen International College Ming-Chuan University Fall, 2004
DATA Export & IMPOrt Asbestos & Condition Appraisal Export & Import
To the ETS – Crown Mineral Activity Overhole/Coring
Install WordPress with Xampp
Open Source Server Side Scripting Permissions & Users
To the ETS – Crown Mineral Activity Undisposed Crown Rights
Introduction to Web programming
MYSQL and WAMP On LocalHost
Database application MySQL Database and PhpMyAdmin
Editing Your Faculty Homepage
MySQL and MyPHPAdmin.
MySQL and PHPMyAdmin.
Easy Way to Reset WordPress Admin Password on Localhost? Guided By: WPGLOBALSUPPORTWPGLOBALSUPPORT.
Download Orders, Shipments, and Receipts
Aqua Data Studio.
Intro to MySQL 1.
Learning about Taxes with Intuit ProFile
If you are not logged in, visit your Moodle Cloud LMS and login
PHPMyAdmin.
Download Orders, Shipments and Receipts
Access Tutorial 8 Sharing, Integrating, and Analyzing Data
Nov 5th Inservice.
Learning about Taxes with Intuit ProFile
Overview of Contract Association Batch Upload
Welcome! Crown Mineral Activity To the ETS – Crown Mineral Activity
You will need to click the login button here
Welcome to the Second Tutorial
Updated July 10, 2015 for July Training
Tutorial 8 Sharing, Integrating, and Analyzing Data
Completing the Primary Reference portion of the Student Profile
Data Base.
Presentation transcript:

MySQL and PHPMyAdmin 1

Make sure your MySQL service is running Make sure your MySQL service is running. If using XAMPP, open the control panel. If the button for MySQL says Start, click it to start the service. 2

Open PHPMyAdmin (PMA) by clicking the Admin button or by navigating a browser to http://localhost/phpmyadmin 3

If needed, resolve the root having no password issue If needed, resolve the root having no password issue. I followed Method 2 found at http://veerasundar.com/blog/2009/01/how-to-change-the-root-password-for-mysql-in-xampp/ 4

Method 2 User='root' UPDATE mysql.user SET mysql.user.Password=PASSWORD('secret') WHERE mysql.user.User='root' 5

Restart If you have changed the root user password in two places, then you may need to close the browser, stop the MySQL server, restart the server, and return to the Admin (PHPMyAdmin a.k.a. PMA) page 11/27/2018

Create a new database by clicking on the Databases tab 7

Where it says Create database, enter a name and click on the Create button 8

Check your new database and click on the Check Privileges link 9

Under New click on the Add user link 10

Enter a username, change host to localhost and enter a password (twice) 11

Scroll down. Note the Grant all privileges on database “dbstatcapital” is pre-selected. Click Go. 12

11/27/2018

Note there are ten columns. This database will have a single table with state-capital data like that found at http://en.wikipedia.org/wiki/List_of_capitals_in_the_United_States Let us say that we will use the Abbr. column as the primary key that will uniquely identify each row/record. Note there are ten columns. 14

Create a table to hold the data. Give it a name Create a table to hold the data. Give it a name. Select a number of columns and click Go. 15

Start filling in the column names Start filling in the column names. Make the Abbr the primary key under the Index drop-down. 16

Finish entering the columns. Enter appropriate types. Click Save. At first I thought Year was the appropriate type for StateDate and CapitalDate. But the dates were too early to be easily accepted at years. 17

Result of saved file 18

Add data by going to the Import tab. Browse for the csv file provided Add data by going to the Import tab. Browse for the csv file provided. Choose CSV from the format dropdown. Scroll down and click Go. Changed automatically for me 19

Result of import 20

Looking at results in Browse tab. 21