H2の場合は、次を使用します:
select * from information_schema.sessions;
MySQLの場合、次を使用します:
show full processlist;
または
select * from information_schema.processlist;
セッション数だけに関心がある場合は、select count(*)
を使用してください select *
の代わりに
H2の場合は、次を使用します:
select * from information_schema.sessions;
MySQLの場合、次を使用します:
show full processlist;
または
select * from information_schema.processlist;
セッション数だけに関心がある場合は、select count(*)
を使用してください select *
の代わりに