Skip to content

Instantly share code, notes, and snippets.

@douglasjarquin
Created February 10, 2013 14:46
Show Gist options
  • Save douglasjarquin/4749790 to your computer and use it in GitHub Desktop.
Save douglasjarquin/4749790 to your computer and use it in GitHub Desktop.
Convert the string "NULL" into a proper NULL across an entire database.
require 'rubygems'
require 'mysql'
@database = {
'host' => '',
'user' => '',
'password' => '',
'name' => ''
}
def sql
# start your engines
@@mysql = Mysql.new(@database['host'], @database['user'], @database['password'], @database['name'])
end
# update tables
tables = sql.list_tables
# update columns
tables.each do |table|
columns = sql.query("SHOW FULL COLUMNS FROM `#{table}`;")
columns.each_hash do |column|
sql.query("UPDATE `#{table}` SET #{column['Field']} = null WHERE #{column['Field']} = 'NULL';")
puts "Column #{table}.#{column['Field']} was nullified."
end
end
# shut down
sql.close
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment