the filter is named vfb_entries_save_new
(works only in the pro version),
you can disable saving in database with the following lines (e.g. in your functions.php):
add_filter('vfb_entries_save_new', 'vfb_entries_save_new_filter');
function vfb_entries_save_new_filter($save, $form_id) {
return false;
}