<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CONNECT &#8211; Mario Chivale ♦ Personal Website</title>
	<atom:link href="https://www.mario.chivale.com/tag/connect/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.mario.chivale.com</link>
	<description>Mario Chivale Personal Website ♦ IT • Informatyka • Computer Science • Elektronika • Electronics • Elektryka • Electricity</description>
	<lastBuildDate>Fri, 26 Jan 2024 18:03:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>PHP MySQL Connect to Database PDO</title>
		<link>https://www.mario.chivale.com/php-mysql-connect-to-database/</link>
		
		<dc:creator><![CDATA[Tatsu]]></dc:creator>
		<pubDate>Sun, 21 Jan 2024 06:03:44 +0000</pubDate>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[CONNECT]]></category>
		<category><![CDATA[Connection]]></category>
		<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[DB Connect]]></category>
		<category><![CDATA[DB Connection]]></category>
		<category><![CDATA[PDO]]></category>
		<category><![CDATA[PHP Code]]></category>
		<guid isPermaLink="false">https://www.mario.chivale.com/?p=766</guid>

					<description><![CDATA[Below is a sample PHP code, that after configuration, can be used to connect to your database. &#60;?php $DBType = "mysql"; $DBHost = "database-host"; $DBPort = "3306"; $DBEnco = "utf-8"; $DBUser = "database-user"; $DBPass = "database-password"; $DBName = "database-name"; try { $DBCon=new PDO("$DBType:host=$DBHost;port=$DBPort;encoding=$DBEnco;dbname=$DBName",$DBUser,$DBPass); $DBCon-&#62;setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); // Connected } catch(PDOException $DBError) { // Not Connected echo '&#60;strong&#62;'.$DBError-&#62;getMessage().'&#60;/strong&#62;'; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Below is a sample PHP code, that after configuration, can be used to connect to your database.</p>
<pre>&lt;?php
$DBType = "mysql";
$DBHost = "database-host";
$DBPort = "3306";
$DBEnco = "utf-8";
$DBUser = "database-user";
$DBPass = "database-password";
$DBName = "database-name";
try {
$DBCon=new PDO("$DBType:host=$DBHost;port=$DBPort;encoding=$DBEnco;dbname=$DBName",$DBUser,$DBPass);
$DBCon-&gt;setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
// Connected
} catch(PDOException $DBError) {
// Not Connected
echo '&lt;strong&gt;'.$DBError-&gt;getMessage().'&lt;/strong&gt;';
exit;
}
?&gt;</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MySQL Commands</title>
		<link>https://www.mario.chivale.com/mysql-commands/</link>
					<comments>https://www.mario.chivale.com/mysql-commands/#respond</comments>
		
		<dc:creator><![CDATA[Tatsu]]></dc:creator>
		<pubDate>Thu, 01 Jun 2023 05:02:22 +0000</pubDate>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ALTER]]></category>
		<category><![CDATA[CLI]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[CONNECT]]></category>
		<category><![CDATA[Connections]]></category>
		<category><![CDATA[FLUSH]]></category>
		<category><![CDATA[Host]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[SELECT]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[user]]></category>
		<guid isPermaLink="false">https://www.mario.chivale.com/?p=614</guid>

					<description><![CDATA[Some of the most important SQL commands Connect to MySQL Server: mysql -u UserName -p Show Users: SELECT user FROM mysql.user; Show Users and Hosts: SELECT user,host FROM mysql.user; Change Password for User: ALTER USER 'UserName'@'Host' IDENTIFIED BY 'NewPassword'; FLUSH PRIVILEGES; If you have any questions, write your question bellow in the &#8220;Leave a Reply&#8221; [&#8230;]]]></description>
										<content:encoded><![CDATA[<h1 style="text-align: justify;">Some of the most important SQL commands</h1>
<p><strong>Connect to MySQL Server</strong>:</p>
<pre>mysql -u UserName -p</pre>
<p><strong>Show Users</strong>:</p>
<pre>SELECT user FROM mysql.user;</pre>
<p><strong>Show Users and Hosts</strong>:</p>
<pre>SELECT user,host FROM mysql.user;</pre>
<p><strong>Change Password for User</strong>:</p>
<pre>ALTER USER 'UserName'@'Host' IDENTIFIED BY 'NewPassword';
FLUSH PRIVILEGES;</pre>
<div align="center"><strong>If you have any questions,<br />
write your question bellow in the &#8220;Leave a Reply&#8221; form.<br />
<em>Thanks!</em></strong></div>
<p>&nbsp;</p>
<div align="center"><a title="PayPal- Donate" href="https://www.paypal.com/donate/?hosted_button_id=5TA4H4TJHD4BJ" target="_blank" rel="noopener"><img decoding="async" title="PayPal - Donate" src="/img/paypal-donate.webp" alt="Paypal - Donate" /></a></div>
<p style="text-align: justify;"><strong>MySQL</strong> is an <strong>open source</strong>, multi-dimensional, relational <strong>database management system</strong>. It is an essential tool for any webmaster/designer/developer, and to get started using it, one must understand the basic commands available.</p>
<p style="text-align: justify;">The most commonly used <strong>MySQL</strong> command is <strong>SELECT</strong>, which lets you query a database table for specific information. This is followed by <strong>INSERT</strong>, which inserts values into an existing row in the database table. <strong>UPDATE</strong> is also used to modify an existing record in the database, while <strong>DELETE</strong> removes an entry from the table. Other commands are used to create, alter, or drop a table, query a database, control user access, and export and import data.</p>
<p style="text-align: justify;"><strong>One of the most important MySQL commands</strong> is <strong>CREATE TABLE</strong>, which lets you add a new table to a database. This must be followed by the table name, the column names and the data types for each column. To delete a table, the <strong>DROP</strong> command is used. <strong>ALTER TABLE</strong> can be used to add, delete, modify, or rename a column within a table. The <strong>TRUNCATE</strong> command is used to delete all records from a table without dropping the entire table.</p>
<p style="text-align: justify;">Once a table has been added, <strong>MySQL</strong> commands must be used to store, modify, and query data that is stored within the table. For example, the <strong>INSERT</strong> command is used to add a row to an existing table. The <strong>UPDATE</strong> command lets you modify existing values in the table, while <strong>SELECT</strong> is used to search for data within the table.</p>
<p style="text-align: justify;">In addition to the above commands, there are many other MySQL commands that are commonly used. These may include commands to set up user accounts, create stored procedures, create triggers, export data, back up data, and more. MySQL commands should be learned and mastered by anyone who needs to manage or work with a complex database. With the help of these commands, a user can create and manipulate database tables, store and modify data, and query a database.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.mario.chivale.com/mysql-commands/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MySQL Connect Query Select Search Insert Update Delete</title>
		<link>https://www.mario.chivale.com/mysql-connect-query-select-search-insert-update-delete/</link>
					<comments>https://www.mario.chivale.com/mysql-connect-query-select-search-insert-update-delete/#respond</comments>
		
		<dc:creator><![CDATA[Tatsu]]></dc:creator>
		<pubDate>Sat, 22 Apr 2023 16:46:21 +0000</pubDate>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ALTER]]></category>
		<category><![CDATA[ALTER TABLE]]></category>
		<category><![CDATA[CONNECT]]></category>
		<category><![CDATA[CREATE]]></category>
		<category><![CDATA[CREATE DATABASE]]></category>
		<category><![CDATA[CREATE TABLE]]></category>
		<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[DATABASE. ALTER DATABASE]]></category>
		<category><![CDATA[DELETE]]></category>
		<category><![CDATA[DROP]]></category>
		<category><![CDATA[INDEX]]></category>
		<category><![CDATA[INSERT]]></category>
		<category><![CDATA[INSERT INTO]]></category>
		<category><![CDATA[INTO]]></category>
		<category><![CDATA[QUERY]]></category>
		<category><![CDATA[SELECT]]></category>
		<category><![CDATA[SET]]></category>
		<category><![CDATA[TABLE]]></category>
		<category><![CDATA[UPDATE]]></category>
		<guid isPermaLink="false">https://mario.chivale.com/?p=445</guid>

					<description><![CDATA[MySQL Connect &#60;?php $mysqli = new mysqli(&#8220;host&#8221;, &#8220;username&#8221;, &#8220;password&#8221;, &#8220;dbname&#8221;, &#8220;port&#8221;, &#8220;socket&#8221;); if($mysqli -&#62; connect_errno) { echo &#8220;MySQL Connection Error: &#8221; . $mysqli -&#62; connect_error; exit(); } ?&#62; MySQL Query: If you have any questions, write your question bellow in the &#8220;Leave a Reply&#8221; form. Thanks! &#160; — Artificial Intelligence Comment — • MySQL is [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><strong>MySQL Connect</strong></p>
<p>&lt;?php<br />
$mysqli = new mysqli(&#8220;host&#8221;, &#8220;username&#8221;, &#8220;password&#8221;, &#8220;dbname&#8221;, &#8220;port&#8221;, &#8220;socket&#8221;);<br />
if($mysqli -&gt; connect_errno) {<br />
echo &#8220;MySQL Connection Error: &#8221; . $mysqli -&gt; connect_error;<br />
exit();<br />
}<br />
?&gt;</p>
<p>MySQL Query:</p>
<div align="center"><strong>If you have any questions,<br />
write your question bellow in the &#8220;Leave a Reply&#8221; form.<br />
<em>Thanks!</em></strong></div>
<p>&nbsp;</p>
<div align="center"><a title="PayPal- Donate" href="https://www.paypal.com/donate/?hosted_button_id=5TA4H4TJHD4BJ" target="_blank" rel="noopener"><img decoding="async" title="PayPal - Donate" src="/img/paypal-donate.webp" alt="Paypal - Donate" /></a></div>
<div align="center"><strong>— Artificial Intelligence Comment —</strong></div>
<div align="center">•</div>
<p style="text-align: justify;">MySQL is a database management system that has become very popular among web developers and system administrators. It provides powerful features, such as querying, searching, inserting, updating, and deleting data. In this article, we will take a look at how to connect to MySQL, use queries to select, search, insert, update and delete data.</p>
<p style="text-align: justify;">To begin, we need to connect to the MySQL server using either the command line interface or a suitable tool like phpMyAdmin. Once connected, we can create a database, tables, and insert data. With a properly configured database, we can begin running queries.</p>
<p style="text-align: justify;">The most basic query is the SELECT statement which retrieves data from the database. We will specify what data to be retrieved, the table in which it is stored and any optional conditions or orderings.</p>
<p style="text-align: justify;">For example, a query to retrieve all rows from the &#8220;users&#8221; table could look like this: SELECT * FROM users.</p>
<p style="text-align: justify;">To make more specific queries, we can use the WHERE clause to limit the result set. For example: SELECT * FROM users WHERE age &gt; 20. This query will only return records of users that are older than 20.</p>
<p style="text-align: justify;">In addition to retrieving records, MySQL also allows us to search for data in text fields. The LIKE operator can be used to search for a certain string in a particular field. For example, if we wanted to search for users with a certain name we could use this query: SELECT * FROM users WHERE name LIKE &#8216;John&#8217;</p>
<p style="text-align: justify;">Inserting data into the database is quite easy as well. All we need to do is use the INSERT statement with the required columns and values. For example: INSERT INTO users (name, email, age) VALUES (&#8216;John&#8217;, &#8216;john@example.com&#8217;, 32). This query will insert a record with the values provided into the users table.</p>
<p style="text-align: justify;">Updating records is also simple. To update one or more records, we can use the UPDATE statement. For example: UPDATE users SET age = 33 WHERE name = &#8216;John&#8217;. This will set the age of any user with the name &#8220;John&#8221; to 33.</p>
<p style="text-align: justify;">Finally, to delete records from the database, we can use the DELETE statement. For example: DELETE FROM users WHERE age &gt; 40. This query will delete any user records with an age greater than 40.</p>
<p style="text-align: justify;">MySQL has many powerful features for managing, querying, searching, inserting, updating, and deleting data. By following the instructions in this article, you will be able to use these features to your advantage.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.mario.chivale.com/mysql-connect-query-select-search-insert-update-delete/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
