Cross Reference: read_all.sql
xref
: /
forgerock
/
authenticator-ios-v2
/
ForgeRock-Authenticator
/
read_all.sql
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
read_all.sql revision f023b5f548a10c190b01ea4259aedeee0796cbd2
SELECT
i
.
issuer
,
i
.
accountName
,
i
.
imageURL
,
i
.
bgColor
,
m
.
type
,
m
.
version
,
m
.
mechanismUID
,
m
.
options
,
n
.
timeReceived
,
n
.
timeExpired
,
n
.
data
,
n
.
pending
,
n
.
approved
FROM
identity
i
,
mechanism
m
LEFT
OUTER
JOIN
notification
n
ON
m
.
mechanismUID
=
n
.
mechanismUID
WHERE
i
.
issuer
=
m
.
idIssuer
AND
i
.
accountName
=
m
.
idAccountName
;