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

  • Home
  • SEARCH
  • 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 4009164
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:50:40+00:00 2026-05-20T08:50:40+00:00

I want to use quotation with escape character. How can I do to avoid

  • 0

I want to use quotation with escape character. How can I do to avoid the following error when one has a special character?

Unclosed quotation mark after the character string.

  • 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-20T08:50:40+00:00Added an answer on May 20, 2026 at 8:50 am

    To escape ' you simly need to put another before: ''

    As the second answer shows it’s possible to escape single quote like this:

    select 'it''s escaped'
    

    result will be

    it's escaped
    

    If you’re concatenating SQL into a VARCHAR to execute (i.e. dynamic SQL), then I’d recommend parameterising the SQL. This has the benefit of helping guard against SQL injection plus means you don’t have to worry about escaping quotes like this (which you do by doubling up the quotes).

    e.g. instead of doing

    DECLARE @SQL NVARCHAR(1000)
    SET @SQL = 'SELECT * FROM MyTable WHERE Field1 = ''AAA'''
    EXECUTE(@SQL)
    

    try this:

    DECLARE @SQL NVARCHAR(1000)
    SET @SQL = 'SELECT * FROM MyTable WHERE Field1 = @Field1'
    EXECUTE sp_executesql @SQL, N'@Field1 VARCHAR(10)', 'AAA'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an SQL server 2008 database instance on one machine. Now I want
I'm trying to place the Facebook multi-friend-selector in a Facebox (don't want to use
I want use jQuery in my project. I know the javascript_include_tag calls the jQuery
I want use math operations in XAML code but I dont know how?
I want use always thin when I start my rails server in development mode.
i want use dll made in c#(visual studio 2008) in c++ project(visual studio 2003).
How to access to file in another domain by ajax (I don't want use
I want prevent user to select dropdown list items using javascript methods. Is there
I want delete files in a folder, which are more than six months old
I recently discovered that UIView s should only have UIViewController s when they fill

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.