Joe,
,
If you want to keep the temp files in disk , and you can save the file data to database at FileUploaded event , or other events , or use properies/methods of AttachmentItem
Use the OpenStream to get a Stream object,
Stream stream=args.OpenStream();
and then use stream.Read method to get the byte[] , save the byte[] in to the database.
Regards,
Terry