<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'special characters in sql' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'special characters in sql' posted on the 'SQL-Server' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sun, 26 May 2013 02:42:45 -0700</pubDate>
    <lastBuildDate>Sun, 26 May 2013 02:42:45 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>special characters in sql</title>
      <link>http://www.programmersheaven.com/mb/sql-server/319546/319546/special-characters-in-sql/</link>
      <description>im having trouble storing special characters in my sql table, is it possible to store for example an ' (apostrophe) ? ive tried setting the field in the table to varchar but this doesnt help&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/sql-server/319546/319546/special-characters-in-sql/</guid>
      <pubDate>Wed, 26 Oct 2005 00:03:15 -0700</pubDate>
      <category>SQL-Server</category>
    </item>
    <item>
      <title>Re: special characters in sql</title>
      <link>http://www.programmersheaven.com/mb/sql-server/319546/320985/re-special-characters-in-sql/#320985</link>
      <description>It is possible to store apostrophe (') in SQL Server tables.&lt;br /&gt;
Try the following:&lt;br /&gt;
&lt;br /&gt;
Create Table Test&lt;br /&gt;
(ID int Primary Key,&lt;br /&gt;
Data varchar(100))&lt;br /&gt;
&lt;br /&gt;
Insert Into Test Values (1, 'This is an apostrophe -&amp;gt; ''. Other special characters are: !@#$%^&amp;amp;*()_+{}[]|\/?&amp;lt;&amp;gt;,.')&lt;br /&gt;
&lt;br /&gt;
Select * From Test&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- HTH&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/sql-server/319546/320985/re-special-characters-in-sql/#320985</guid>
      <pubDate>Fri, 11 Nov 2005 00:34:36 -0700</pubDate>
      <category>SQL-Server</category>
    </item>
  </channel>
</rss>