Changeset 495

Show
Ignore:
Timestamp:
10/02/09 15:23:00 (15 years ago)
Author:
bhilburn
Message:

Fixing the same SQL error in a later line.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • vtcross/trunk/src/include/vtcross/cbr.h

    r494 r495  
    162162    command = "CREATE TABLE " + tablename + "("; 
    163163    for(size_t i = 0; i < numColumns; i++) { 
    164         command += _cols[i] + " FLOAT"; 
     164        command += _cols[i] + " FLOAT "; 
    165165    } 
    166166