The database name can be anything you want as it will create a new one. Yours should be unique to your app.
Finding the action is a little harder. You need to run your app in the test center and go to Tools, View Source and view your projects main html file.
In the html you need to find where the list is initially is assigned it will look like this (the html code):
<ul id=”m1-noteHome-list11″ class=”m1-rounded-list m1-list”>
<li id=”m1-noteHome-listItem1″
class=”m1-first m1-last m1-clickable m1-background-13 m1-background-17 m1-background-18″
data-action-click-id=”action80″>
<div id=”m1-noteHome-listItem1-inner-div”>
<img id=”m1-noteHome-accessoryImage1″ class=”m1-element m1-clickable” src=
“res/images/tableRowDisclosureIndicator.png”/>
<div id=”m1-noteHome-text1″ class=”m1-text m1-font-3 m1-active-color-1″
>fff</div>
</div>
</li>
</ul>
Above you can see the line: data-action-click-id=”action80”>
this is the action you need to assign.
Hopefully this will help you.