seanybravo
IS-IT--Management
I am opening a recoreset with this join query:
I am having trouble referencing the table specific information for example
will not work. Is there a way of getting the information out of the Recordset?
Thanks
Sean
Code:
strSQL = "SELECT tblData.*, tblTitle.*, tblCustomCategory.* FROM ((((( tblData LEFT JOIN (SELECT * FROM tblTitle IN '" & adminPath & "') AS tblTitle ON tblData.fldContactTitle = tblTitle.fldTitleID) LEFT JOIN (SELECT * FROM tblCategoryList IN '" & adminPath & "') AS tblCustomCategory ON tblData.fldCategory1 = tblCustomCategory.fldID) LEFT JOIN (SELECT * FROM tblCategoryList IN '" & adminPath & "') AS tblCustomCategory1 ON tblData.fldCategory2 = tblCustomCategory1.fldID) LEFT JOIN (SELECT * FROM tblCategoryList IN '" & adminPath & "') AS tblCustomCategory2 ON tblData.fldCategory3 = tblCustomCategory2.fldID) LEFT JOIN (SELECT * FROM tblCategoryList IN '" & adminPath & "') AS tblCustomCategory3 ON tblData.fldCategory4 = tblCustomCategory3.fldID)"
I am having trouble referencing the table specific information for example
Code:
response.Write(rsCustom("tblCustomCategory1.fldDefinition"))
will not work. Is there a way of getting the information out of the Recordset?
Thanks
Sean