ADO Security Warning??

This is a discussion on "ADO Security Warning??" within the ASP.NET Forum section. This forum, and the thread "ADO Security Warning?? are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > ASP.NET Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 10th, 2005, 17:43
New Member
Join Date: Nov 2005
Age: 39
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
ADO Security Warning??

When I open a dataconnection and retrieve a table I am getting this error:

ADO Security Warning
This web site uses a data provider that may be unsafe. If you trust the web site press OK.

code is like this:
oORA = "Provider=MSDAORA.1;Data Source=Tempdb;User ID=tempdev;Password=tempdev"
strSQL = "select * from masterfi where acct = '00657'"

set conn = createobject("adodb.connection")
conn.ConnectionString = oORA
conn.open
Set rswrk = conn.Execute(strSQL)

Any Idea how to get rid of message?

thanks

Last edited by bwalker; Nov 10th, 2005 at 17:47.
Reply With Quote

  #2 (permalink)  
Old Nov 11th, 2005, 11:54
Highly Reputable Member
Join Date: Jul 2003
Location: Ipswich, UK
Posts: 690
Thanks: 0
Thanked 0 Times in 0 Posts
Re: ADO Security Warning??

I would suggest using a different provider, see:
http://support.microsoft.com/default...5BLN%5D;258510
Reply With Quote
  #3 (permalink)  
Old Nov 14th, 2005, 18:42
New Member
Join Date: Nov 2005
Age: 39
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Re: ADO Security Warning??

I set it up to do a post back because I realized I shouldn't be doing the database lookup through the client-side.

Thanks for your help
Reply With Quote
Reply

Tags
ado, security, warning

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
CMS Security ChrisTheSoul Web Page Design 5 Feb 21st, 2008 16:28
php security saltedm8 PHP Forum 22 Sep 27th, 2007 09:22
Help with security wiggles Website Planning 16 Apr 9th, 2007 22:28


All times are GMT. The time now is 00:04.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43