I have a field called "JobID" that needs to be unique in the notes database. My plan is to search the database for a document's JobID and ,if it is equal to the current document's JobID, alert the user and cancel the save. I can't seem to figure out how I would do this though.
|
|
You could shorten your code a bit, there is no need to loop through all documents... db.Search is very slow, I would use a view lookup instead. You could use db.FTSearch, but if the full-text index is not up-to-date, you will not get the correct return value. So just create a hidden lookup view with the job ID as the first and only column (sorted). You should also declare session/db/etc in your function. Make sure you always use Option Declare...
|
|||
|
|
|
Managing the unique number yourself like that may lead you into trouble. There is a formula Alternatively you could maintain a single document in the database that holds a number value that you increment each time manually. It's more work, but gives you something like an auto-incremented Id that relational databases have. |
|||||||||||
|
|
I am the first to admit that this is rather ugly, but it's effective and very simple if you have a view where the first column is the JobID.
Or something like that. You could also do something much nicer in many other ways:
Hope this helps inspire you :-) Phil |
|||||||||||||||
|
|
Hm, I'm afraid there's no other way than iterating over all documents in database, which use specific form containing your field. Much more efficient way instead of iterating every time, would be saving used JobID in two places - with the document, and in some storage containing all JobIDs used - then you could check with gathered set, and/or possibly do all document's scan at off hours to ensure data integrity. You can narrow search by using some specific custom-defined view, and iterate over documents in this view instead of all documents in DB, however such solution will be a risk, that with data integration somewhat forged you'll get yourself into trouble.. |
||||
|
|
