Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Re:Blind leading the blind (Score 1) 88

1. select count(*) from bugstore where bug_level='critical';

That's soooo Drupal 6 in Drupal 7 we do awesomo stuff like:
db_select('bugstore', 'b')->fields('b')->condition('bug_level', 'critical')->execute();

that must have been the system that took them the 2,5 years from D6 to D7 - wrapping various home rolled PHP functions to SQL statements.

Slashdot Top Deals

"If it ain't broke, don't fix it." - Bert Lantz

Working...