what I am getting is that you want to use db2 in command line mode.
db2bp is the back process, every time when you start db2 session, it creates a db2bp for the session(not for each command) and definatly a front process that correspond with that.
you can use
db2 +c insert ...
db2 +c do more work
any time you start db2 without +c ,any commands that where issued with autocommit off will be automatically committed..
Now you can explicitly commit or rollback you commands.