Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] wanted-a database script


  • From: michael_dougherty at pbp.com (Miked Dougherty)
  • Subject: [Javascript] wanted-a database script
  • Date: Wed Apr 30 14:41:10 2003

Are you expecting the client's machine to be able to access the data
server directly?  

If you just want the user to send the html form data back to the web
server for processing, then you don't need a script to do that.

I know late-model IE will warn against a local script attempting to
directly access the database using an ADO connection.  This will require
either continual approval from the user, or a configuration change on
each client.  Exposing your database server to the internet is also a
security concern.  

If your use is on a firewall-protected intranet where you have trusted
control of the desktop/browser running the app, then having a local
script make it's own connection to the database can dramatically improve
performance of a 'conversational' form (and lower overhead on the Web
server)

Can you provide more information about what you are trying to do?


-----Original Message-----
From: javascript@xxxxxxxxxx [mailto:javascript@xxxxxxxxxx] 
Sent: Wednesday, April 30, 2003 11:07 AM
To: javascript@xxxxxxxxxx
Subject: [Javascript] wanted-a database script
Importance: Low


I need a javascript script that will take user-entered fields from a
HTML
form and use these to build a SQL 'select' statement.  The script will
then open and connect to my Microsoft Access table on our site and
displaying the results set, looping throught each one starting at the
1st
one and going until it hits EOF.