Login
`
Templates, Tools and Utilities
|
||
Icetips Article
Back to article list
Search Articles
Add Comment
Printer friendly
Direct link
Par2: Trapping duplicate key error (ABC) 2005-05-14 -- Dennis Evans fileManger tests for duplicate errors in the insertServer method. If you
are using insert() then after the call
if (access:f.insert() <> level:benign)
if (globalErrors.getError() = DupKeyErr)
do what you want
else
other error
end
end
if you are using tryInsert() after the call
if (access:f.tryInsert() <> level:benign)
if (access:f.getError() = msg:duplicateKey)
so what you want
else
other error condition
end
end
Today is November 21, 2024, 8:32 am This article has been viewed 35323 times.
|
|