Fix the INSERT query.

This commit is contained in:
Aric Stewart 2004-06-30 18:23:52 +00:00 committed by Alexandre Julliard
parent ab519f2a2c
commit 9cb2787a95
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ static UINT INSERT_execute( struct tagMSIVIEW *view, MSIHANDLE record )
}
else
val = MsiRecordGetInteger( record, n++ );
r = sv->ops->set_int( sv, row, 1, val );
r = sv->ops->set_int( sv, row, n, val );
if( r )
break;
}