• Skip to main content
  • Skip to primary sidebar

Founder at work

Master the skills to create and launch your next SaaS company

  • About Me
  • Reviews
  • Resources
  • Community
  • Contact
  • Lessons
  • Series
  • Search
  • Login

MySQL

How to create a MySQL (SQL) database, username, password, and privileges from the CLI?

May 14, 2014 by Rick Hernandez Leave a Comment

Login in as an administrator to SQL CLI interface mysql -u root -p Now create a database where the user will belong to CREATE DATABASE TheDatabase; Now let's go ahead and create a user CREATE USER TheUser; Next will be to give permission to the user for … [Read more...] about How to create a MySQL (SQL) database, username, password, and privileges from the CLI?

Filed Under: MySQL, Programming, SQL

How to setup a LAMP stack using ubuntu server

March 11, 2014 by Rick Hernandez Leave a Comment

Why even bother with Linux? Whenever working on a client to server architecture it is always good practice ( in my opinion) to test and implement virtual environments of the actual production of the software project being deployed. In this blog post, I will be … [Read more...] about How to setup a LAMP stack using ubuntu server

Filed Under: Java, Linux, Linux networking, MySQL, Networking, PHP, Programming

How to setup MySQL with java using ubuntu in netbeans?

November 4, 2013 by Rick Hernandez 1 Comment

Assumptions Virtual Ubuntu box is reachable (IE. Network) MySQL setup is running correctly Root password is available! Let's get started | Download jdbc connector Go ahead and get the jdbc connector here or just run the following command Setup … [Read more...] about How to setup MySQL with java using ubuntu in netbeans?

Filed Under: Java, MySQL, Programming

Simple MySQL statments that get used.

April 10, 2013 by Rick Hernandez Leave a Comment

mysql> show tables; +----------------------+ | Tables_in_ricardohDB | +----------------------+ | Customer | | FavoriteThings | | Orders | | SalesPerson | | phoneBook | +----------------------+ 5 rows in set … [Read more...] about Simple MySQL statments that get used.

Filed Under: MySQL, Programming

How to create a table and rows in MySQL?

April 7, 2013 by Rick Hernandez Leave a Comment

Creating tables in MySQL is a piece of cake since we got are database rolling now, its time to get some tables going. In this example 3 tables will be created, SuperSalesPerson, FancyOrders, BestCustomers. This three tables will hold different types of data and … [Read more...] about How to create a table and rows in MySQL?

Filed Under: MySQL, Programming

How to create a database and Delete a database in MySQL?

April 7, 2013 by Rick Hernandez Leave a Comment

In order to create a database to hold all of the tables that are going to be used, the following command will create a database parts that can hold different tables with in it. CREATE DATABASE parts; Nice what if you do a typo? or what if you want to call the … [Read more...] about How to create a database and Delete a database in MySQL?

Filed Under: MySQL, Programming

How to show databases in MySQL?

April 7, 2013 by Rick Hernandez Leave a Comment

show databases will show you the available databases which are available to be used. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | ricardohDB | | test … [Read more...] about How to show databases in MySQL?

Filed Under: MySQL, Programming

Getting to know phpMyAdmin with MySQL building a address Book.

November 19, 2012 by Rick Hernandez Leave a Comment

Testing out my development environment with XAMPP, I created a HolaMundo.php file to try out my new MySQL database and some echo commands from PHP it seemed simple enough although the dollar signs are a little awkward to type. The file starts with a stage that just … [Read more...] about Getting to know phpMyAdmin with MySQL building a address Book.

Filed Under: MySQL, PHP

Primary Sidebar

Learn How To Take Your Idea And Convert It Into An App From Scratch Even If You Have Never Written A Single Line Of Code.

  • How to Find Your Next Great App Idea
  • The Secret To Getting PAID To Build Your Own App
  • How To Create Your App (SaaS, Mobile, VR, AR, Game)
  • How To Monetize Your Apps
Learn More
4.82 Ratings

Copyright © 2025 · JSecademy Blog Theme on Genesis Framework · WordPress · Log in