Freelancers Network
 
skill list top cap
Homepage
Join the Freelancer's Network
Update your details
Find a freelancer
Post a project
Find a project
Projects Archive
Post a job
Find a job
Jobs Archive
See Dan's Pages
See Andy's Pages
Link to this site
Resources
Join/Leave Forum
Forum Messages
+Additions+ Adverts
Advertising
Contact Us
Subscribe to our newsletter - enter your email address and hit return
Freelancers.net is owned and operated by Andy Stowell and Dan Winchester
skill list end cap
guru web hostcom

Find me again on Freelancers.net

RE: FN-FORUM A Database/internet question

date posted 12th January 2001 10:14

Darren,
ASP/Interdev can be a good approach or even UltraDev. I personally use
hand-coding to do the asp as it allows more control over what you are doing
and understand immediately where fauklts are. However, for doing the
searches it does depend upon what you are searching for.

You can create a recordset using the following:

recordset=Server.CreateObject("ADODB.Recordset")

You could then create the search string to the database:

strsql="Select * FROM youtable WHERE yourfield='yourrequirement'" etc.

You would also have to have a connection from the recordset to the database.
This can be done through odbc layers of connection strings. I prefer to use
connection strings. An example would be:

dim database
dim username
dim password

database="Provider=Microsoft.Jet.OLEDB.4.0; Data Source=""your path followed
by the db.mdb file"";"
username="admin"
password=""

The in order to open up the connection I use:

set connection=Server.CreateObject("ADODB.Connection")
connection.CommandTimeout=30
connection.ConnectionTimeout=20
connection.Open database, username, password

And then finally - put it all together to open the recordset to get to the
database fields as done by the sqlstr field:

recordset.Open strsql, connection

There are also a number of lock types etc that can help with the way the
information is retrieved.

I hope this goes someway to helping you. If not - I apologise and I tried!


Stephen Parker
Contact Information:
***************************************
Orbinternet - New Media Design
Tel: 07899 978696
Email: [EMAIL REMOVED]
Web: http://www.orbinternet.com
Address: 3 Prospect Bank, Wetherby,
Leeds, LS23 6RS

Comp Pro Ltd trading as Orbinternet

***************************************



Messages by Day
January 31st 2001
January 30th 2001
January 29th 2001
January 28th 2001
January 27th 2001
January 26th 2001
January 25th 2001
January 24th 2001
January 23rd 2001
January 22nd 2001
January 21st 2001
January 20th 2001
January 19th 2001
January 18th 2001
January 17th 2001
January 16th 2001
January 15th 2001
January 14th 2001
January 13th 2001
January 12th 2001
January 11th 2001
January 10th 2001
January 9th 2001
January 8th 2001
January 7th 2001
January 6th 2001
January 5th 2001
January 4th 2001
January 3rd 2001
January 2nd 2001
January 1st 2001


Messages by Month
December 2001
November 2001
October 2001
September 2001
August 2001
July 2001
June 2001
May 2001
April 2001
March 2001
February 2001
January 2001


Messages by Year
2008
2007
2006
2005
2004
2003
2002
2001
2000