09.01.2016, 16:56
Pff, how am I going to explain this? You can't "add a database to Pawno". Pawno is an editor. You can't add a database to Pawn either.
The MySQL server is, evidently, a server. It doesn't matter whether it is downloaded stand-alone from mysql.com or included in a package like XAMPP or WAMP. It the exact same thing and once it has been set up you should be able to connect to it using any client.
A client is anything that connects to the MySQL server. There are many clients: phpMyAdmin is a client, MySQL Workbench is a client, the command line can be a client and the MySQL plugin for SA-MP is also a client.
However in order to connect you must have a username and a password. When the server is set up, typically only a root account is created. Now, it is a very bad idea to run anything as the root user so a new user is created with a password. Clients that have a user interface (MySQL WorkBench, phpMyAdmin, ...) usually have a fairly straightforward way to accomplish this. Next, a database is created and the user that was just created is given permission to use that database.
The user, the password and the database you just created are the things that need to be added to your script in order to connect.
The MySQL server is, evidently, a server. It doesn't matter whether it is downloaded stand-alone from mysql.com or included in a package like XAMPP or WAMP. It the exact same thing and once it has been set up you should be able to connect to it using any client.
A client is anything that connects to the MySQL server. There are many clients: phpMyAdmin is a client, MySQL Workbench is a client, the command line can be a client and the MySQL plugin for SA-MP is also a client.
However in order to connect you must have a username and a password. When the server is set up, typically only a root account is created. Now, it is a very bad idea to run anything as the root user so a new user is created with a password. Clients that have a user interface (MySQL WorkBench, phpMyAdmin, ...) usually have a fairly straightforward way to accomplish this. Next, a database is created and the user that was just created is given permission to use that database.
The user, the password and the database you just created are the things that need to be added to your script in order to connect.