Jul 21, 2005 #1 makisbest Technical User Mar 3, 2005 125 GR Hi I'm new in Javascript, but this I want to do is to connect directle to a mssql database and insert a value on a field. Please help
Hi I'm new in Javascript, but this I want to do is to connect directle to a mssql database and insert a value on a field. Please help
Jul 21, 2005 #2 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB Are you using server-side JavaScript, or do you mean using client-side JavaScript? Client-side, it might be possible in IE-only. I'd use server-side for this. Hope this helps, Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt] Upvote 0 Downvote
Are you using server-side JavaScript, or do you mean using client-side JavaScript? Client-side, it might be possible in IE-only. I'd use server-side for this. Hope this helps, Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt]
Jul 21, 2005 #3 ali183 IS-IT--Management Jul 8, 2005 6 DK BillyRayPreachersSon: Can you please explain how it will be possible in IE? /Ali -------------- The Lord works in mysterious ways - and SysAdmins at mysterious hours Upvote 0 Downvote
BillyRayPreachersSon: Can you please explain how it will be possible in IE? /Ali -------------- The Lord works in mysterious ways - and SysAdmins at mysterious hours
Jul 21, 2005 Thread starter #4 makisbest Technical User Mar 3, 2005 125 GR I am using IE it is possible ? Upvote 0 Downvote
Jul 21, 2005 #5 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB As I said - it *might* be possible. I do not know for sure - it was an educated guess that some sort of ActiveX control would be able to be used ;o) Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt] Upvote 0 Downvote
As I said - it *might* be possible. I do not know for sure - it was an educated guess that some sort of ActiveX control would be able to be used ;o) Dan [tt]Dan's Page [blue]@[/blue] Code Couch http://www.codecouch.com/dan/[/tt]
Jul 21, 2005 #6 vbkris Programmer Jan 20, 2003 5,994 IN yup, ur guess is correct: <script> Var con=new ActiveXObject("ADODB.Connection") //Voila u have a connection object </script> but like Dan said it is STRICTLY IE only... Known is handfull, Unknown is worldfull Upvote 0 Downvote
yup, ur guess is correct: <script> Var con=new ActiveXObject("ADODB.Connection") //Voila u have a connection object </script> but like Dan said it is STRICTLY IE only... Known is handfull, Unknown is worldfull