| java.lang.Object com.mysql.jdbc.MiniAdmin
MiniAdmin | public class MiniAdmin (Code) | | Utility functions for admin functionality from Java.
author: Mark Matthews |
Method Summary | |
public void | shutdown() Shuts down the MySQL server at the other end of the connection that this
MiniAdmin was created from/for. |
MiniAdmin | public MiniAdmin(String jdbcUrl) throws SQLException(Code) | | Create a new MiniAdmin, connecting using the given JDBC URL.
Parameters: jdbcUrl - the JDBC URL to use throws: SQLException - if an error occurs |
MiniAdmin | public MiniAdmin(String jdbcUrl, Properties props) throws SQLException(Code) | | Create a new MiniAdmin, connecting using the given JDBC URL and
properties
Parameters: jdbcUrl - the JDBC URL to use Parameters: props - the properties to use when connecting throws: SQLException - if an error occurs |
shutdown | public void shutdown() throws SQLException(Code) | | Shuts down the MySQL server at the other end of the connection that this
MiniAdmin was created from/for.
throws: SQLException - if an error occurs |
|
|