Ask a Question related to ASP.NET Security, Design and Development.
-
Rob #1
GUID question
Hi,
What is a GUID exactly. Is it a unique identifier that the environment
assigns you or does it take your password and encrypt it? Does it
correspond with a value in the database for validation (such as a
password field)?
Thanks
Rob
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Rob Guest
-
coldfusion converts GUID to binary
here's a simple stored procedure CREATE PROCEDURE guidTEST AS SELECT newID() as guidTEST, '8B710BAD-2F8C-42AA-BA67-8984CBA81BD6' as... -
GUID and CFProcParam
I have a new client who is using GUID's as the primary key of their Customer table rather than the integer that most of my other clients use. When... -
SQL: AutoCreating a not-so-unique GUID?
OK, that's an odd subject line. Let me try to explain what we have in our table: item language collectionID GUID the form1 ... -
Retrieving GUID from DB2 UDB
Bill Homan <member35043@dbforums.com> wrote in message news:<3203554.1060104571@dbforums.com>... What is actually in the CHAR(16) FOR BIT DATA... -
GUID as a parameter
Why are you dynamically creating the parameter name? Should this not be fixed and you just pass in myTable.myGuid? "Ian Williamson"... -
Joerg Jooss #2
Re: GUID question
Rob wrote:
Quoting MSDN:> Hi,
> What is a GUID exactly. Is it a unique identifier that the environment
> assigns you or does it take your password and encrypt it? Does it
> correspond with a value in the database for validation (such as a
> password field)?
"A GUID is a 128-bit integer (16 bytes) that can be used across all
computers and networks wherever a unique identifier is required. Such
an identifier has a very low probability of being duplicated."
No password, no encryption.
Cheers,
--
[url]http://www.joergjooss.de[/url]
mailto:news-reply@joergjooss.de
Joerg Jooss Guest
-
Rob #3
Re: GUID question
So if someone passes me a guid through a querystring, there no way that
that will correspond to a database field on our database?
It's pretty much like a session("session_id") in classic ASP i guess.
Thanks
Rob
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Rob Guest
-
Joerg Jooss #4
Re: GUID question
Rob wrote:
Nothing prevents one from using GUIDs as surrogate primary keys. It can> So if someone passes me a guid through a querystring, there no way
> that that will correspond to a database field on our database?
even be a convenient solution in case you want to expose those primary
keys in a web application without allowing users to easily "walk"
through a database table by incrementing/decrementing primary keys.
Cheers,
--
[url]http://www.joergjooss.de[/url]
mailto:news-reply@joergjooss.de
Joerg Jooss Guest



Reply With Quote

