I was under the impression that it wasnt possible. I mean being that javascript is clientside. Wouldnt it be kinda pointless? as the client would have to have he database username and password.
If it is possible Id like to know how.
I was under the impression that it wasnt possible. I mean being that javascript is clientside. Wouldnt it be kinda pointless? as the client would have to have he database username and password.
If it is possible Id like to know how.
i think u can use ajax.. doing so u can connect to ms access(or anyother db)..
may i know why u want to connect to database using javascript. any specific reason....
regards
just a note: in case you need this for a strict IE usage and a defined client environment (like an intranet) you may use IE's JScript/ActiveX capabilities to achieve that ... search the forum ... there are multiple answers to that question already ...
hi r035198x,
correct me if am worng... ajax uses javascript... thats y i told we can use ajax.
regards
AJAX stands for Asynchronous JavaScript and XML (see it's wiki page)
AJAX does not connect to databases. You need some serverside script that will give back results to your AJAX fuction calls.
AJAX merely fools the user into believeing that data is being retrieved from the database without the page being submitted.
Comment