-1

I want to connect jconsole with mysql 5.1 as likes as database profiler. Is there any way to solve this problem?

Charles
  • 50,943
  • 13
  • 104
  • 142
Sai Ye Yan Naing Aye
  • 6,622
  • 12
  • 47
  • 65

1 Answers1

1

JConsole is not a database profiler. It is not a profiler at all. It is just a JMX visualizer. Since each JVM has a "built-in" JMX server you can connect it to any java application. But MySQL is not a java application. It is written in C and compiled to native executable. So JConsole is just irrelevant here.

You can however get access to connection pool and MYSQL JDBC driver if you cannect JConsole to your java application (or application server) that works with MySQL DB.

AlexR
  • 114,158
  • 16
  • 130
  • 208