I've created procedure with IN parameter inside my database(MySql->Routines->Create Procedure). I am using it to create a new database. When i call the procedure and pass argument, the new database is created but the name of the new database is the name of the variable that i use in the procedure and not the name that i pass as a parameter.
CREATE PROCEDURE dbCreate (IN dbName VARCHAR(255))
BEGIN
CREATE DATABASE IF NOT EXISTS dbName COLLATE utf8_bin; CREATE TABLE IF NOT EXISTS dbName.City( . . . );
When i call the procedure dbCreate,
USE old_database;
CALL old_database.dbCreate('FRANCE');
MySql generates new database which is called dbName.