Ask a Question related to ASP, Design and Development.

  1. #1

    Default Search On FOX Data!

    Dear Friends,
    I've got a web application using ASP, 65001 codepage and
    Microsft Access As DataStore.
    I have imported some data from FOX(DOS) into access and
    when I try to search on this data using T-SQL LIKE, it
    dosn't work correctly.
    Would you please help me,

    Thanks,
    Amir Davoodi.

    Amir Davoodi Guest

  2. Similar Questions and Discussions

    1. Removing search index data from PDF document
      Hi, Would somebody confirm for me that the Acrobat SDK can be used to automatically remove search indexes from PDF documents? Thank you, Derek
    2. search and return Yahoo stock data
      Hi , wondering if anyone has experience in getting and returning Yahoo stock data. I wish to 1/ generate a search from user selections (from user...
    3. Dataset to Datagrid data search
      I create my first ever Flash document. I am using XMLConnector, DataSet and a DataGrid to connect to a Web Service and display a directory of users...
    4. Search Page Produces All Data From DB
      I'm trying to create a search page that will pull items based on the form submitted. For some reason, I get everything in the database, not just...
    5. search and sort data
      I've got data in a table (fields are page num, part, model, type, price). I'd like a user to enter a part number, for example, and have that record...
  3. #2

    Default Re: Search On FOX Data!

    T-SQL uses LIKE '%abc%' syntax
    ACCESS uses LIKE '*abc*' syntax

    "Amir Davoodi" <amird@sgnetway.com> wrote in message
    news:094601c3957e$88d84a80$a101280a@phx.gbl...
    > Dear Friends,
    > I've got a web application using ASP, 65001 codepage and
    > Microsft Access As DataStore.
    > I have imported some data from FOX(DOS) into access and
    > when I try to search on this data using T-SQL LIKE, it
    > dosn't work correctly.
    > Would you please help me,
    >
    > Thanks,
    > Amir Davoodi.
    >

    Dan Sikorsky Guest

  4. #3

    Default Re: Search On FOX Data!

    Dan Sikorsky wrote:
    > T-SQL uses LIKE '%abc%' syntax
    > ACCESS uses LIKE '*abc*' syntax
    >
    This is true. However, if you use dynamic sql from your asp app, then you
    must use the ODBC wildcards: % and _. No matter what the database is.

    Bob Barrows
    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Bob Barrows Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139