Kevin said:
>OK, that sounds fine, but is it possible to determine the type of field so my script
>will be able to add the quotes if it is of type INTEGER?
>
>Kind regards
>Kevin

Probably the best thing to do is use bind variables when inserting non-hardcoded 
values into your SQL.  Bind variables will 'do the right thing' and you don't have to 
worry about quoting issues.  Besides that, they are the best way to prevent 
sql-injection security breaches.  And they're probably faster. -- Darren Duncan

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to