Please create an account to participate in the Slashdot moderation system

 



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

The flow chart is a most thoroughly oversold piece of program documentation. -- Frederick Brooks, "The Mythical Man Month"

Working...