Changeset 1420:f6c21ef02573
- Timestamp:
- 01/04/10 23:39:31 (2 years ago)
- Branch:
- default
- Location:
- sources
- Files:
-
- 4 edited
-
examples/db/test.cc (modified) (1 diff)
-
examples/db_mysql/test.cc (modified) (1 diff)
-
src/dataBaseSqlConstructor.cc (modified) (3 diffs)
-
src/ioNetworkServer.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sources/examples/db/test.cc
r1413 r1420 67 67 return 1; 68 68 #endif 69 } else { 70 return 1; 69 71 } 70 72 -
sources/examples/db_mysql/test.cc
r1413 r1420 37 37 long now = tools::time::now(); 38 38 39 mysql::__connection_options__ ci("test", argc>1?argv[1]:"localhost", "root", "password", "", 3306);40 41 39 #ifdef MYSQL_EXT 42 40 try { 41 mysql::__connection_options__ ci("test", argc>1?argv[1]:"localhost", "root", "password", "", 3306); 42 43 43 mysql db(ci); 44 44 -
sources/src/dataBaseSqlConstructor.cc
r1413 r1420 203 203 dodoStringArray array; 204 204 #ifndef USE_DEQUE 205 array.reserve( o->size());205 array.reserve(i->size()); 206 206 #endif 207 207 208 208 for (;i!=j;++i) { 209 array.clear();210 211 209 o = i->begin(); 212 210 p = i->end(); … … 215 213 array.push_back(o->second); 216 214 values.push_back(array); 215 216 array.clear(); 217 217 } 218 218 } … … 233 233 dodoStringArray array; 234 234 #ifndef USE_DEQUE 235 array.reserve( o->size());235 array.reserve(map.size()); 236 236 #endif 237 237 -
sources/src/ioNetworkServer.cc
r1406 r1420 61 61 : xexec(s), 62 62 collectedData(this, xexec::OBJECT_IONETWORKSERVER) 63 #else 64 server::server(server &) 63 65 #endif 64 66 {
Note: See TracChangeset
for help on using the changeset viewer.
