Thanks Tibor, I should have been more correct. Yes of course I am passing
queries - not actual data. IN any case, the data being passed would be
encrypted. Also, I am using classic ASP. Does this pose a problem?
One more item, I suspect it would be best if I were to use views and stored
procedures server side to enhance, somewhat increase security (users
wouldn't actually see the queries) and speed?
Thanks
> IN any case, the data being passed would be encrypted.
OK... Where is the encryption and decryption performed? At the client side? If so, what type of
(encrypted) data is it that SQL server will see? I'm thinking that if you for instance encrypt a
string so the encrypted info constraint a lot of "control characters" then you might not want to use
a string datatype in SQL Server (because of these "control characters" are outside the string
datatype repertoire).
> Also, I am using classic ASP.
Which most probably mean that your API will be classic ADO - nothing strange about that.

Signature
Tibor Karaszi, SQL Server MVP
http://www.karaszi.com/sqlserver/default.asp
http://sqlblog.com/blogs/tibor_karaszi
> Thanks Tibor, I should have been more correct. Yes of course I am passing queries - not actual
> data. IN any case, the data being passed would be encrypted. Also, I am using classic ASP. Does
[quoted text clipped - 30 lines]
>>>
>>> Thanks.
MJ - 13 Jul 2008 18:54 GMT
Tibor, the data that will be stored in the tables will be encrypted, not the
queries and will be done client side prior to transmission to the server or
after transmission from the server.
Based on Josh's comment (good practice), I'll be using SPs and Views on the
server.
Thanks to all for the info and advice.
>> IN any case, the data being passed would be encrypted.
>
[quoted text clipped - 50 lines]
>>>>
>>>> Thanks.
MJ - 17 Jul 2008 15:28 GMT
Tibor, I had replied to this several days ago, but for some reason it wasn't
posted.
In any case, the data that will be stored in the tables will be encrypted,
not the
queries and will be done client side prior to transmission to the server or
after transmission from the server.
Based on Josh's comment (good practice), I'll be using SPs and Views on the
server.
Thanks to all for the info and advice
>> IN any case, the data being passed would be encrypted.
>
[quoted text clipped - 50 lines]
>>>>
>>>> Thanks.
>One more item, I suspect it would be best if I were to use views and stored
>procedures server side to enhance, somewhat increase security (users
>wouldn't actually see the queries) and speed?
Yes these are good practices for many reasons.
Josh