Created
February 10, 2013 14:46
-
-
Save douglasjarquin/4749790 to your computer and use it in GitHub Desktop.
Convert the string "NULL" into a proper NULL across an entire database.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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