HomeMySQL Page 4 - Dynamically Insert and Update Values In a MySQL Database Using OOP
If You POST It, It Will Go - MySQL
Stop writing insert and update SQL statements and cut the time you spend writing simple SQL in half while focusing on the more complicated things. Leave it up to OOP to help you out. We will make a class that goes out and looks for the values for us and builds a SQL statement on the fly. All we have to do is make sure the column names in the database correspond with the field names in the HTML form. Believe me when I say it saves TONS of time. I never write applications that don't use it.
So now all you have to do is name your form fields the same as your database columns and you are (as we say in Kentucky,) "in bidnus." Let's create an example MySQL table:
CREATE TABLE
`my_tbl` ( `id` int(5) NOT NULL auto_increment, `name` varchar(100) NOT NULL default '', `age` int(3) NOT NULL default '0', `gender` enum('MALE','FEMALE') NOT NULL default 'MALE', `phone` varchar(50) NOT NULL default '', `date_added` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;
Now we just create an HTML form using the POST method. We name the fields the same names as the columns in my_tbl.
// Include the file that contains // the MyDatabase class require('database.class.php'); // If the form was submitted... if($_POST['action']) { // Instantiate the class $SQL = new MyDatabase; // Connect to the database $SQL->Connect();
// To get a datetime stamp in the // date_added column $_POST['date_added'] = 'DATESTAMP';
// Add values to my_tbl if(!$SQL->AddToDB('my_tbl')) die( $SQL->GetError() ); // Disconnect from the database $SQL->Disconnect(); }
Check to see if the form has been submitted, instantiate the class, connect to the database, execute AddToDB passing the table name to it, and finally disconnecting from the database.
Notice that this will check to see if AddToDB returns false. If it does, it kills the execution of the script and displays the error that can be gotten from the GetError method.
But you didn't think we'd stop there, did you? No, no my blue friend, there is always an update to be done.