Hooray Python

I love Python, because it lets me add 15 fields to a MySQL database in about 5 minutes, which is a lot less time than it would have taken to add them manually via the command-line client or PhpMyAdmin:

#!/usr/bin/python
#altertable.py

for i in range(1,6):
print "ALTER TABLE `items` ADD `img%d_title` VARCHAR(255);" % i;
print "ALTER TABLE `items` ADD `img%d_url` VARCHAR(255);" % i;
print "ALTER TABLE `items` ADD `img%d_caption` TEXT;" % i;

Save as `altertable.py` and run it from the shell:

`python altertable.py | mysql -u andy -pmyPassw0rd -h localhost mydatabase`

Not that it would have taken much longer to write in PHP, Perl, or even Java, but it's so *clean* in Python.

Syndicate content

Twitter

  • @captain_science so glad you lliked them, especially the bow tie- it was a bit of a crap shoot! 3 years 30 weeks ago
  • Not sure we had enough pie http://flic.kr/p/8WnSf2 3 years 31 weeks ago
  • What part of "don't discuss politics in the lodge" is so &@$!?ing hard to understand? 3 years 33 weeks ago
  • photo.jpg http://flic.kr/p/8Hy5pe 3 years 38 weeks ago
  • It's about time http://flic.kr/p/8GcTJo 3 years 39 weeks ago

Older

Contact

Andy Chase
(978) 297-6402
andychase [at] gmail.com
GPG/PGP Public Key