Creating a stored procedure in MySQL5 with ColdFusion 9's <CFQUERY>-Tag
问题 I wonder if it's possible to create a stored procedure in MySQL5 via ColdFusion's <cfquery> -tag. I've never done anything with storedprocedures before... I was trying to set a function which replaces like MySQL's REPLACE but case insensitive. I wanted to use the function provided here. But first I want to create this function via Coldfusion like: <CFQUERY datasource="#dsn#"> DELIMITER $$ DROP FUNCTION IF EXISTS `replace_ci`$$ CREATE FUNCTION `replace_ci` ( str TEXT,needle CHAR(255),str_rep