Changeset 291 for GearsORM/trunk

Show
Ignore:
Timestamp:
07/14/07 08:32:59 (18 months ago)
Author:
uriel
Message:

forgot some ;

Location:
GearsORM/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • GearsORM/trunk/GearsORM.Fields.js

    r289 r291  
    99        { 
    1010                this.options = options || {}; 
    11         } 
     11        }; 
    1212        field.prototype =  
    1313        { 
     
    2323                isBackwardRelation:false, 
    2424                isRelation:false 
    25         } 
     25        }; 
    2626        field.constructor = GearsORM.Field.Primitive; 
    2727        return field; 
  • GearsORM/trunk/GearsORM.ResultIterator.js

    r284 r291  
    6868                { 
    6969                        arr.push(current); 
    70                 }) 
     70                }); 
    7171                return arr; 
    7272        } 
  • GearsORM/trunk/GearsORM.Sql.js

    r283 r291  
    7777                query.push(") VALUES ("); 
    7878                query.push(self._valuesByModel(modelClass)); 
    79                 query.push(")") 
     79                query.push(")"); 
    8080                return query.join(""); 
    8181        },       
     
    163163                        sql.push("insert"); 
    164164                sql.push(" on table \""); 
    165                 sql.push(tableName) 
     165                sql.push(tableName); 
    166166                sql.push("\" violates foreign key constraint \"fk_"); 
    167167                sql.push(relatedTableName); 
     
    214214                                sql.push(" ON "); 
    215215                                sql.push(relatedName); 
    216                                 sql.push(".rowid = ") 
     216                                sql.push(".rowid = "); 
    217217                                sql.push(name); 
    218218                                sql.push(".");