November 2018
Intermediate to advanced
404 pages
10h 16m
English
MySQL is another database driver officially supported by both Vapor and Kitura; like SQLite and PostgresQL, it is also an open source database. MySQL is very popular because it is one of the main components in web services that is based on LAMP software stacks. LAMP stands for Linux, Apache Web Server, MySQL, and PHP Scripting Language. The MySQL database is available on most cloud hosting providers. To have a MySQL database running on your system, install mysql with brew and start the mysql server:
$ brew install mysql$ brew services start mysql
If you are using Linux, get the latest mysql package from one of the repositories, use apt-get to install it, and start mysql service:
$ wget https://repo.mysql.com//mysql-apt-config_0.8.4-1_all.deb ...Read now
Unlock full access