<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'SQL on paradox' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'SQL on paradox' posted on the 'Delphi and Kylix' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 25 May 2013 21:33:35 -0700</pubDate>
    <lastBuildDate>Sat, 25 May 2013 21:33:35 -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>SQL on paradox</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/383960/383960/sql-on-paradox/</link>
      <description>Can i perform SQl question on Paradox table?Plase tell me where can i find some good example.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/383960/383960/sql-on-paradox/</guid>
      <pubDate>Tue, 06 Jan 2009 11:02:42 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: SQL on paradox</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/383960/384003/re-sql-on-paradox/#384003</link>
      <description>as far as I know yes. If you can establish a connection to a paradox db then simply use a TQuery component. SQL syntax is almost standard as I understand (some slight differences). basic statements should be ok.&lt;br /&gt;
&lt;br /&gt;
eg.&lt;br /&gt;
  &lt;pre class="sourcecode"&gt;FQuery := TQuery.Create;
  try
    FQuery.SQL.Clear;
    FQuery.SQL.Add('Select * from MYTable');
    FQuery.Execute;
    if FQuery.Active then 
      ShowMessage(FQuery.FieldbyName('aField').asString)
;
  finally
    FreeAndNil(FQuery);
  end;&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
Hope Im answering the correct question.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/383960/384003/re-sql-on-paradox/#384003</guid>
      <pubDate>Wed, 07 Jan 2009 07:57:22 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
    <item>
      <title>Re: SQL on paradox</title>
      <link>http://www.programmersheaven.com/mb/delphikylix/383960/384123/re-sql-on-paradox/#384123</link>
      <description>Yes, but seems like Delhi can not recognize Fquery.Execute.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/delphikylix/383960/384123/re-sql-on-paradox/#384123</guid>
      <pubDate>Fri, 09 Jan 2009 11:55:49 -0700</pubDate>
      <category>Delphi and Kylix</category>
    </item>
  </channel>
</rss>