Connect Remote MySQL Database via Command Line Interface

MySQL provides the mysql command in order to connect remote MySQL servers via the command line interface. The MySQL server may be in a remote system which is located in our LAN or enterprise network or in the interface. We can use the mysql command by specifying the remote MySQL server hostname or IP address. … Read more

Export MySQL Database Using Command Line

MySQL database stores a different types of data. These data can be backed up or exported by using the mysqldump command into an SQL file. The SQL files stores the database tables, and structure the data. Exported SQL files can be used to restore the database and data in other database servers. The exporting of … Read more

Run MySQL From Command Line In Windows

MySQL is a cross-platform database that can be also run and used in Windows operating systems. We can use the Windows MySQL command line server and client via the command line interfaces like MS-DOS or PowerShell. In this tutorial, we examine how to run MySQL via the command line interface in Windows. Run MySQL Database … Read more

How To Start Google Chrome Using Command Line On Windows?

Google Chrome is a popular web browser used by millions of users. Google Chrome can be started in different ways where using the Start Menu or Desktop Shortcut is the most used and easiest way. But we can start Google Chrome via the command line interface by calling it binary. In this tutorial, we examine … Read more

How To Start MySQL via Command Line In Windows and Linux?

MySQL is a popular open-source database used in Windows and Linux operating systems. MySQL is used as a service that can be started, stopped, or restarted via the command line interface. By default, the MySQL service is set to start when the operating system boots. But we can also start the MySQL server via the … Read more

qsort() Function In C and C++

C Programming language provides the qsort() function in order to sort integers in an array. The array should consist of numbers which can be integers, long integers, or floating-point numbers. The qsort() function also called comparator it is used to compare numbers and sort them properly. In this tutorial, we examine the qsort() function syntax, … Read more

PHP try…catch Exceptions

PHP programming language provides try and catch statements in order to manage exceptions. The exceptin means an unexpected situation for an application that prevents the execution of the statements and interrupts the execution with errors. The try statement block is used to check any exception and the catch statement block is used to execute code if there is an error in … Read more

Array Append In JavaScript

JavaScript provides the array type in order to store multiple items in a single object and iterate them easily. The Array is very similar to the other programming languages’ list type. We can add a new item to the arrays by using different methods in JavaScript. In this tutorial we examine push(), concat(), unshift(), spread syntax, and … Read more