void=dbInsertBookmark(name: string)
The function creates and sets bookmark for the actual record of the database. In an application we can create a list of such bookmarks and then visit records that seemed somehow interesting to us.

Parameters
The parameter of the function is name, which represents name of the bookmark. This name must be unique. If we insert an already existing name, the exisiting bookmark will be rewritten.

Example - Director
global ado
ado.dbInsertBookmark("test1")

Example - Authorware
CallObject(ado,"dbInsertBookmark","test1")