I've signed up to this forum as Latex - however much I love it - is driving me to despair right now

What I would like to do is the create a bibliography in German and citing the sources in apastyle. So I've made a bibliography using biblatex, but on the one hand no bibliography in the pdf-file is created and on the other hand the ID of the item in the bib-file is cited instead of the name of the author and the year. Referring to the example below:
Code: Select all
(...), sed diam voluptua. \parencites{taylor}
"(...), sed diam voluptua. (taylor)"
instead of
"(...), sed diam voluptua. (Taylor, 2002)"
in the pdf-file.
Furthermore I get these error messages:
Code: Select all
This is BibTeX, Version 0.99d (MiKTeX 2.9 64-bit)
The top-level auxiliary file: spieltheorie_neu2.aux
I found no \citation commands---while reading file <filename>.aux
I found no \bibdata command---while reading file <filename>.aux
I found no \bibstyle command---while reading file <filename>.aux
(There were 3 error messages)
Thank you very much in advance!

Martin
Code: Select all
\documentclass[12pt] {article}
\usepackage[utf8]{inputenc}
\usepackage[german,naustrian]{babel}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[absolute]{textpos}
\usepackage{anysize}
\usepackage{fancyhdr}
\usepackage{mathtools}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{textcomp}
\usepackage{hyperref}
\usepackage{placeins}
\usepackage{graphicx}
\usepackage{paralist}
\usepackage{chngcntr}
\usepackage{float}
\usepackage{setspace}
\usepackage{marvosym}
\usepackage[style=apa,backend=biber]{biblatex}
\DeclareLanguageMapping{german}{german-apa}
\usepackage[babel,german=guillemets]{csquotes}
\addbibresource{<bibliography>.bib}
\title{...}
\author{...}
\date{...}
\pagestyle{fancy}
\rhead{...}
\lhead{...}
\begin{document}
(...)
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. \parencites{taylor}
(...)
\printbibliography
\begin{appendix}
(...)
\end{appendix}
\end{document}