<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015139" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015139</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/search-query-ms-access-97#comment-1087604</link>
    <description> &lt;p&gt;It&#039;s probably doing that because you&#039;re not using a stored procedure, try taking that line, and everything up to and including &quot;SET NOCOUNT ON&quot; out.&lt;/p&gt;
 </description>
     <pubDate>Mon, 20 Aug 2001 12:34:30 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1087604 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/search-query-ms-access-97#comment-1087571</link>
    <description> &lt;p&gt;thanks a lot peter your help was greatly appreciated &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;-----&lt;/p&gt;
&lt;p&gt;I get an error and it highlight the word PROCEDURE on line 1..?&lt;/p&gt;
 </description>
     <pubDate>Sun, 19 Aug 2001 18:13:27 +0000</pubDate>
 <dc:creator>a_gajic</dc:creator>
 <guid isPermaLink="false">comment 1087571 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/search-query-ms-access-97#comment-1087342</link>
    <description> &lt;p&gt;Adam,&lt;/p&gt;
&lt;p&gt;Search queries can become pretty complex, I&#039;ll try to keep it simple. Here&#039;s a sample stored procedure using your fields.&lt;/p&gt;
&lt;p&gt;CREATE PROCEDURE dbo.CarSearch&lt;/p&gt;
&lt;p&gt;  @Manufacturer varchar(50),&lt;br /&gt;
  @Registration varchar(50),&lt;br /&gt;
  @Fuel varchar(20),&lt;br /&gt;
  @MileageLow integer,&lt;br /&gt;
  @MileageHigh integer,&lt;br /&gt;
  @State varchar(50),&lt;br /&gt;
  @PriceLow money,&lt;br /&gt;
  @PriceHigh money&lt;/p&gt;
&lt;p&gt;AS&lt;/p&gt;
&lt;p&gt;SET NOCOUNT ON&lt;/p&gt;
&lt;p&gt;SELECT * FROM TBL_Second_Use_Cars&lt;br /&gt;
WHERE Manufacturer = @Manufacturer&lt;br /&gt;
AND Registration_Letter LIKE @Registration + &#039;_&#039;&lt;br /&gt;
AND Petrol/Diesel = @Fuel&lt;br /&gt;
AND Mileage BETWEEN @MileageLow AND @MileageHigh&lt;br /&gt;
AND Price BETWEEN @PriceLow AND @PriceHigh&lt;/p&gt;
&lt;p&gt;You will have to modify this a little to work with Access but you should be able to see the logic from this example.&lt;/p&gt;
&lt;p&gt;P.S. You should really have a separate table for the manufacturers, and then link that table to your existing table.&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 Aug 2001 17:11:20 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1087342 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
