Subversion Repositories DevTools

Rev

Rev 5055 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5055 Rev 5057
Line 103... Line 103...
103
Dim searchString
103
Dim searchString
104
If Request.QueryString("search[value]") <> "" Then
104
If Request.QueryString("search[value]") <> "" Then
105
    searchString = " AND upper(pkg_name) LIKE upper('%" & Request.QueryString("search[value]") & "%')" 
105
    searchString = " AND upper(pkg_name) LIKE upper('%" & Request.QueryString("search[value]") & "%')" 
106
End If
106
End If
107
 
107
 
-
 
108
' Filter (state)
-
 
109
If Request.QueryString("sdkstateFilter") <> "" Then
-
 
110
    searchString = " AND UPPER(SDK_STATE) in (" & Request.QueryString("sdkstateFilter") & ")" 
-
 
111
End If
-
 
112
 
108
' Create a list of cols that we need. Avoids ambiguity in selections
113
' Create a list of cols that we need. Avoids ambiguity in selections
109
Dim x,colList,colListJoin
114
Dim x,colList,colListJoin
110
For x = Lbound(dataCols) to Ubound(dataCols)
115
For x = Lbound(dataCols) to Ubound(dataCols)
111
    colList = colList & colListJoin & dataCols(x)
116
    colList = colList & colListJoin & dataCols(x)
112
    colListJoin = ","
117
    colListJoin = ","