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

  • It's about time http://flic.kr/p/8GcTE9 3 years 44 weeks ago
  • Don't use twitter much any more, ayuh. 3 years 45 weeks ago
  • Lazyweb: Does there exist a #drupal module for selectively disabling CCK fields without deleting them? Perhaps field permissions... 3 years 45 weeks ago
  • New post: Old Joe (Minstrel Banjo) http://tinyurl.com/3yyg8g9 3 years 49 weeks ago
  • New post: Emacs Org-mode: Custom agenda that filters by date AND tag http://tinyurl.com/2vnrcl2 3 years 49 weeks ago

Older

Contact

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