|
What I am doing is asking Frontpage to
display these column values in a particular place. The number of
records returned would depend on the query.
|
Name |

|
|
Email |
Link |
A query is simply a request (in a Structured
- or commonly understood
manner) to display specific information based on a question.
Click
here to find out more about using
SQL queries
The easiest way to query a web database is
by using a URL: Here's our example: If I
type www.mydomain.com/display.asp?name=John
in my browser, if all is well ASP will search the database, look in the
name column and return any records that are like John. If all is
well I should only John's information in our example. |
Just to make sure that you are following us
here, take a look at the following URL and see if you can read between the lines:
http://www.meetnewplayers.com/bend/Listings/US/musiciansearch.asp?MusUSState=California
What does this tell us? At the website
meetnewplayers.com, on the Active Server Page named
musiciansearch please (?) display results
from a database that is linked to that page from the column MusUSState
which has
records with the word California in this column.
If you open the California page at meetnewplayers.com you may notice that the "wrapper" or shared
border always stays the same and is delivered using straight HTML. It's
only the middle of the page that changes depending on the results
generated.
Click
here to find out more about using
SQL queries
SQL is a premium product
and can handle many thousand simultaneous queries without slowing down the
search. This is important for a busy site like meetnewplayers.com This way the information comes from 2 sources, much faster and even more secure.
Our other site musiciansoft.com uses
Access to display the database
results for our artist reporting pages. Why don't we use SQL? The number of
simultaneous logins is low, if it uses Access or text records on the
server it won't tax the server too much because of the low
volume. A good rule of thumb seems to be about 8 simultaneous users for
Access and it works just fine.
|