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 772153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T18:45:57+00:00 2026-05-14T18:45:57+00:00

I am using the below storedproc to generate the Insert statements of a specified

  • 0

I am using the below storedproc to generate the Insert statements of a specified table
It is build-ed without any errors. Now i want to return the result set in “V_string” as output of the SP

    DELIMITER $$

DROP PROCEDURE IF EXISTS `demo`.`InsertGenerator` $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `InsertGenerator`()
SWL_return:
BEGIN
-- SQLWAYS_EVAL# to retrieve column specific information

-- SQLWAYS_EVAL# table

   DECLARE v_string NATIONAL VARCHAR(3000); -- SQLWAYS_EVAL# first half

-- SQLWAYS_EVAL# tement

   DECLARE v_stringData NATIONAL VARCHAR(3000); -- SQLWAYS_EVAL# data

-- SQLWAYS_EVAL# statement

   DECLARE v_dataType NATIONAL VARCHAR(1000); -- SQLWAYS_EVAL# 

-- SQLWAYS_EVAL# columns

   DECLARE v_colName NATIONAL VARCHAR(50);
   DECLARE NO_DATA INT DEFAULT 0;
   DECLARE cursCol CURSOR  FOR 
   SELECT column_name,data_type FROM `columns`
   -- WHERE table_name = v_tableName;
   WHERE table_name = 'tbl_users';
   DECLARE CONTINUE HANDLER FOR SQLEXCEPTION
   BEGIN
      SET NO_DATA = -2;
   END;
   DECLARE CONTINUE HANDLER FOR NOT FOUND SET NO_DATA = -1;
   OPEN cursCol;
   SET v_string = CONCAT('INSERT ',v_tableName,'(');
   SET v_stringData = '';

   SET NO_DATA = 0;
   FETCH cursCol INTO v_colName,v_dataType;

   IF NO_DATA <> 0 then

      -- NOT SUPPORTED print CONCAT('Table ',@tableName, ' not found, processing skipped.')
close cursCol;

      LEAVE SWL_return;
   end if;

   WHILE NO_DATA = 0 DO
      IF v_dataType in('varchar','char','nchar','nvarchar') then

         SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# ll(',v_colName,'SQLWAYS_EVAL# ''+');
      ELSE
         if v_dataType in('text','ntext') then -- SQLWAYS_EVAL# 

-- SQLWAYS_EVAL# else 


            SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# ll(cast(',v_colName,'SQLWAYS_EVAL# 00)),'''')+'''''',''+');
         ELSE
            IF v_dataType = 'money' then -- SQLWAYS_EVAL# doesn't get converted 

-- SQLWAYS_EVAL# implicitly


               SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# y,''''''+
isnull(cast(',v_colName,'SQLWAYS_EVAL# 0)),''0.0000'')+''''''),''+');
            ELSE
               IF v_dataType = 'datetime' then

                  SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# time,''''''+
isnull(cast(',v_colName,
                  'SQLWAYS_EVAL# 0)),''0'')+''''''),''+');
               ELSE
                  IF v_dataType = 'image' then

                     SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# ll(cast(convert(varbinary,',v_colName,
                     'SQLWAYS_EVAL# 6)),''0'')+'''''',''+');
                  ELSE
                     SET v_stringData = CONCAT(v_stringData,'SQLWAYS_EVAL# ll(cast(',v_colName,'SQLWAYS_EVAL# 0)),''0'')+'''''',''+');
                  end if;
               end if;
            end if;
         end if;
      end if;
      SET v_string = CONCAT(v_string,v_colName,',');
      SET NO_DATA = 0;

      FETCH cursCol INTO v_colName,v_dataType;

   END WHILE;


END $$

DELIMITER ;
  • 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-14T18:45:57+00:00Added an answer on May 14, 2026 at 6:45 pm

    SELECT v_string.

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

Sidebar

Related Questions

No related questions found

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.