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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:30:14+00:00 2026-05-14T06:30:14+00:00

I am trying to run this SQL from ASP.NET 2005 but am getting an

  • 0

I am trying to run this SQL from ASP.NET 2005 but am getting an invalid SQL error because it has a weird character ” in it.

In my code I am trying to replace ” with " but it is not doing it as the special character in the replace command is changing to ".

Query:

insert into userquery(description)
  values ('In fact, Topeka Google Mayor Bill Bunten expressed it best: “Don’t be fooled. Even Google recognizes that all roads lead to Kansas, not just yellow brick ones.”')

If I copy and execute this in mysql it is working good.

How can I solve this problem?

  • 1 1 Answer
  • 1 View
  • 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-14T06:30:15+00:00Added an answer on May 14, 2026 at 6:30 am

    You’re building your query wrong. You didn’t say c# or vb.net on the client, but either way your sql string should look more like this:

    string query = "insert into userquery(description) values (@description)";
    

    And then you set your description value like this:

    using (var cn = new MySqlConnection("... your connection string here..."))
    using (var cmd = new MySqlCommand(query, cn))
    {
       /* THIS IS THE IMPORTANT PART */
       cmd.Parameters.Add("@description", SqlDbType.VarChar).Value = MyDescriptionVariable;
       /*****************************/
    
       cn.Open();
       cmd.ExecuteNonQuery();
    }
    

    And the vb version:

     Using cn As New MySqlConnection("... your connection string here..."), _
           cmd As New MySqlCommand(query, cn)
    
       ''# THIS IS THE IMPORTANT PART
       cmd.Parameters.Add("@description", SqlDbType.VarChar).Value = MyDescriptionVariable
       ''############################
    
       cn.Open()
       cmd.ExecuteNonQuery()
    End Using
    

    This will make sure your parameter is properly escaped, no matter what odd characters you have.

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

Sidebar

Related Questions

I am getting the following error when trying to run this query in SQL
I'm trying to run this SQL command but it's giving me an error that
Hi I am trying to run this query in SQL but it is not
I'm trying to run this code but this error appear: Uncaught TypeError: string is
I'm trying to run a trace with Sql Server Profiler against an Asp.NET Website
I get this error when trying to run this Oracle SQL script. Any help
Suppose In SQL I am trying to run this query Select * from MyTable
I am trying to run this query but is not working. I am getting
I'm currently trying to run a LINQ query over a MS SQL database. This
I'm trying to run this script that basically reads/interprets text in from a textfile

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.