I am trying to use some variables in a creation script for database setups. I am not exactly sure how to use them. Please explain how to properly format my code. Below is the code I try, and the error I get:

SET @username = 'xxxx'; -- store number goes here
SET @password = 'xxxxxx'; -- store password goes here

CREATE TABLE IF NOT EXISTS `my_table` (
`id` int(11) auto_increment,
`release_date` datetime,
`front_image_file` varchar(255),
PRIMARY KEY  (`id`)
) ENGINE=FEDERATED  
DEFAULT CHARSET=latin1 
AUTO_INCREMENT=1 
CONNECTION='mysql://`@username`:`@password`@host_name:3306/database_name/table_tame' ;

error

#1432 - Can't create federated table. The data source connection string 'mysql://`@username`:`@password`@host_name:3306/databa' is not in the correct format

I also tried it without the `

Trying EdmundG's solution

SET @username = 'xxxx'; -- store number goes here
SET @password = 'xxxxxx'; -- store password goes here

CREATE TABLE IF NOT EXISTS `my_table` (
`id` int(11) auto_increment,
`release_date` datetime,
`front_image_file` varchar(255),
PRIMARY KEY  (`id`)
) ENGINE=FEDERATED  
DEFAULT CHARSET=latin1 
AUTO_INCREMENT=1 
CONNECTION='Uid=@username; Pwd=@password; Server=****; Port=3306; Database =****; Table=****;' ;

didn't work, still says not formatted correctly

link|improve this question

70% accept rate
feedback

5 Answers

you can't do this. mysql doesn't parse DDL statements for variable.

link|improve this answer
feedback

OK third try.

There are two possible problems I can see.

  1. You have right quotes instead of generic single quotes in your SQL.

  2. You need to define the variables and execute before running the SQL that uses those variables.

See http://www.connectionstrings.com/mysql

link|improve this answer
I got the connection string from dev.mysql.com/doc/refman/5.0/en/federated-use.html and it works fine when I don't have the variables in there. If you could put the whole thing together for me that would be awesome – Justin Giboney Aug 13 '09 at 18:25
take a look at my edits – Justin Giboney Aug 13 '09 at 18:34
I'm not sure that's going to work. Wouldn't you have to wrap the entire command in a string and use an EXEC call? – Michael Todd Aug 13 '09 at 18:37
Of course, that comment is coming from someone in the SqlServer world; perhaps it's different in MySQL. – Michael Todd Aug 13 '09 at 18:39
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '& @username & ':' & @password' at line 9 – Justin Giboney Aug 13 '09 at 18:42
show 2 more comments
feedback

If you are using MySQL 5+ could you try placing it in a stored function, and then running the function?

link|improve this answer
feedback

try this

SET @username = 'xxxx';-- store number goes here

SET @password = 'xxxxxx';-- store password goes here

CREATE TABLE IF NOT EXISTS my_table ( id int(11) AUTO_INCREMENT, release_date datetime, front_image_filevarchar(255), PRIMARY KEY (id)) ENGINE=FEDERATED DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 CONNECTION='Uid='+@username'; Pwd='+@password+'; Server=**; Port=3306; Database =**';

link|improve this answer
feedback

MySQL doesn't support variable interpolation directly into syntax like that.

You could, however, build a string with those variables and then prepare and execute it as dynamic SQL.

SET @username = 'xxxx'; -- store number goes here
SET @password = 'xxxxxx'; -- store password goes here

SET @sql = CONCAT('CREATE TABLE IF NOT EXISTS `my_table` (',
    '  `id` int(11) auto_increment,',
    '  `release_date` datetime,',
    '  `front_image_file` varchar(255),',
    '  PRIMARY KEY  (`id`)',
    ') ENGINE=FEDERATED',
    ' DEFAULT CHARSET=latin1', 
    ' AUTO_INCREMENT=1', 
    ' CONNECTION=''mysql://', @username, ':', @password, 
    '@host_name:3306/database_name/table_tame');

PREPARE stmt FROM @sql;

EXECUTE stmt;

DEALLOCATE stmt;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.