Viewing 15 posts - 46 through 60 (of 66 total)
pietlinden (9/23/2013)
September 23, 2013 at 10:12 pm
pietlinden (9/23/2013)
Read these:
http://www.sqlservercentral.com/articles/Security/sqlinjection/1269/
http://www.sqlservercentral.com/articles/Editorial/77168/
http://www.sqlservercentral.com/articles/sql+injection/65129/
I would consider dynamic SQL as an absolute last resort. Not a tool to be used by ex-Access programmers (I...
September 23, 2013 at 9:19 pm
pietlinden (9/23/2013)
September 23, 2013 at 6:57 pm
Sean Lange (9/23/2013)
September 23, 2013 at 6:56 pm
Sean Lange (9/23/2013)
kapil_kk (9/23/2013)
Instead of this:SET @SqlQueryFirstName = '@SqlQuery ' + 'firstname = @firstname'
Write this:
SET @SqlQueryFirstName = @sqlquery + 'firstname ='+ @firstname
Instead of this, read the article that...
September 23, 2013 at 6:34 pm
L' Eomot Inversé (9/21/2013)
AndrewSQLDBA (9/20/2013)
September 22, 2013 at 6:42 pm
Greg Edwards-268690 (9/20/2013)
enriquezreyjoseph (9/20/2013)
You have a point there, a lot of people does not exert any little effort before posting the questions...
But for me, that how the technology works,...
September 21, 2013 at 12:42 am
pietlinden (9/20/2013)
September 20, 2013 at 10:05 pm
pietlinden (9/20/2013)
You could do this...
SELECT bioID
, FirstName
, LastName
, Sex
, Status
FROM Bio INNER JOIN Sex ON Bio.SexID=Sex.SexID
INNER JOIN...
September 20, 2013 at 9:16 pm
Hi Michael
You have a point there, a lot of people does not exert any little effort before posting the questions...
But for me, that how the technology works, it has its...
September 20, 2013 at 8:41 pm
Can you show us the code??..
cheers!!
"Be Brave even though you are not no one can tell the difference" - sir bernard tan
September 20, 2013 at 3:44 am
September 19, 2013 at 11:39 pm
Thanks my friend you got it!!!
September 19, 2013 at 11:36 pm
Viewing 15 posts - 46 through 60 (of 66 total)