Skip to main content
Server path: /mysql | Type: Application | PCID required: Yes

Tools


mysql_create_table

Create a new table in MySQL Parameters:

mysql_delete_data

Delete data from a MySQL table. Use ? placeholders in where with whereParams for safe parameterization. Parameters:

mysql_describe_table

Get table structure and column information Parameters:

mysql_execute_query

Execute a SQL query on MySQL. Use ? placeholders for parameterized queries (e.g., “SELECT * FROM users WHERE id = ? AND status = ?”). Parameters are applied in order. Parameters:

mysql_get_info

Get MySQL database connection information

mysql_insert_data

Insert data into a MySQL table Parameters:

mysql_list_databases

List all databases on the MySQL server

mysql_list_tables

List all tables in the database Parameters:

mysql_select_data

Select data from a MySQL table. Use ? placeholders in where with whereParams for safe parameterization. Parameters:

mysql_update_data

Update data in a MySQL table. Use ? placeholders in where with whereParams for safe parameterization. Parameters: