Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7626919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:23:25+00:00 2026-05-31T05:23:25+00:00

I wonder if it’s possible to create a stored procedure in MySQL5 via ColdFusion’s

  • 0

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 CHAR(255))
    RETURNS TEXT
    DETERMINISTIC
    BEGIN
    DECLARE return_str TEXT;
    SELECT replace(lower(str),lower(needle),str_rep) INTO return_str;
    RETURN return_str;
    END$$

    DELIMITER ;
</CFQUERY>

This throws following error:

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 ‘DELIMITER $$ DROP FUNCTION IF EXISTS
replace_ci$$ CREATE FUNCTION’ at line 1

Although executing the statement directly in e.g. phpMyAdmin succeeded.

This article shows only how to call a storedprod with <cfstoredproc>-tag but I cannot see where these procedures are declared to the databaseserver.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T05:23:26+00:00Added an answer on May 31, 2026 at 5:23 am

    maybe you’re making this more complicated as it should be. I found the following discussion stating, you dont’d need DELIMIER keyword: http://forums.mysql.com/read.php?39,130834,248556#msg-248556

    <CFQUERY datasource="mysql_jdbc">
        DROP FUNCTION IF EXISTS `replace_ci`;
    
        CREATE FUNCTION `replace_ci` ( str TEXT,needle CHAR(255),str_rep CHAR(255))
            RETURNS TEXT
             DETERMINISTIC
            BEGIN
            DECLARE return_str TEXT;
            SELECT replace(lower(str),lower(needle),str_rep) INTO return_str;
            RETURN return_str;
         END
    </CFQUERY>
    

    Don’t forget to add allowMultiQueries=true to your JDBC URL: http://www.bennadel.com/blog/1542-MySQL-3-4-com-mysql-jdbc-Driver-And-allowMultiQueries-true.htm

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder how could I describe in mybatis xml stored procedure call with optional
I wonder if it is allowed to create and operate an app inside FB
I wonder how it would be possible to implement a positional inverted index in
I wonder whether it is possible to change the display server IP of a
I wonder if it is possible to supress errors in PHP like when redeclaring
I wonder about shared preferences security. Is it possible to get access to sharedpreferences,
I wonder how I can best create a progress bar fragment. It must be
I wonder if I can create a RelayCommand on my ViewModel like this: public
I wonder if 301 redirect is possible in an exclusively html static nginx server?
I wonder if it's possible to reference a XML string value in another XML

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.