Ticket #5130: 5130-v1.patch
| File 5130-v1.patch, 683 bytes (added by , 17 years ago) |
|---|
-
programs/mythbackend/scheduler.cpp
2448 2448 gettimeofday(&dbstart, NULL); 2449 2449 MSqlQuery result(dbConn); 2450 2450 result.prepare(query); 2451 result.bindValues(bindings); 2451 2452 MSqlBindings::const_iterator it; 2453 for (it = bindings.begin(); it != bindings.end(); ++it) 2454 { 2455 if (query.contains(it.key())) 2456 result.bindValue(it.key(), it.value()); 2457 } 2458 2452 2459 result.exec(); 2453 2460 gettimeofday(&dbend, NULL); 2454 2461
