A HitchHackers guide through WordPress


Home | Pages | Archives


maybe_drop_column

February 12, 2011 1:43 am

Definition:
function maybe_drop_column($table_name, $column_name, $drop_ddl) {}

Drop column from database table, if it exists.

Parameters

Return values

returns:False on failure, true on success or doesn’t exist.

Source code

function maybe_drop_column($table_name, $column_name, $drop_ddl) {

	global $wpdb;

	foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {

		if ($column == $column_name) {

			//found it try to drop it.

			$wpdb->query($drop_ddl);

			// we cannot directly tell that whether this succeeded!

			foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {

				if ($column == $column_name) {

					return false;

				}

			}

		}

	}

	// else didn't find it

	return true;

}

2333

Rate this:

Posted by Thorsten

Categories: /wp-admin/install-helper.php, Documentation, Files, Functions, Functions by letter m

Tags: ,

Leave a Reply



Mobile Site | Full Site


Get a free blog at WordPress.com Theme: WordPress Mobile Edition by Alex King.