1
BEGIN
2
PREPARE STMT FROM
3
"Select a.PasswordID, b.Name, c.Name, a.Title, a.UserName, a.Notes, a.clientid from Clients b, Passwords a LEFT OUTER JOIN Locations c ON c.locationid = a.locationid where a.clientid = b.clientid and
4
(
5
a.PasswordID like concat('%',?,'%') or
6
b.Name like concat('%',?,'%') or
7
c.Name like concat('%',?,'%') or
8
a.Title like concat('%',?,'%') or
9
a.UserName like concat('%',?,'%') or
10
a.Notes like concat('%',?,'%')
11
) and a.clientid in (Select clientid From UserSec Where UserID=?)
12
order by a.Title ASC, b.Name ASC, c.Name
13
Limit ?,?";
14
SET @LIMIT = (page * pagesize) - pagesize;
15
SET @s = search;
16
SET @size = pagesize;
17
SET @U = userid;
18
EXECUTE STMT USING @s,@s,@s,@s,@s,@s,@U,@LIMIT,@size;
19
END