msi: Support retrieving rows from join tables.

This commit is contained in:
Hans Leidekker 2010-01-18 13:09:46 +01:00 committed by Alexandre Julliard
parent 6fd641aa05
commit 1423ef9923
1 changed files with 5 additions and 2 deletions

View File

@ -117,8 +117,11 @@ static UINT JOIN_fetch_stream( struct tagMSIVIEW *view, UINT row, UINT col, IStr
static UINT JOIN_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec ) static UINT JOIN_get_row( struct tagMSIVIEW *view, UINT row, MSIRECORD **rec )
{ {
FIXME("(%p, %d, %p): stub!\n", view, row, rec); MSIJOINVIEW *jv = (MSIJOINVIEW*)view;
return ERROR_FUNCTION_FAILED;
TRACE("%p %d %p\n", jv, row, rec);
return msi_view_get_row( jv->db, view, row, rec );
} }
static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record ) static UINT JOIN_execute( struct tagMSIVIEW *view, MSIRECORD *record )