I am using Texmaker and Miktex, and having issues to compile the references. In my latex file:
\usepackage[%
backend=biber,%
style=numeric,%
sorting=none,%
]{biblatex}
I am using quick build: pdfLaTeX+View PDF.
When I compile it gets printed linke this:

When I compile the same file in ShareLatex it works perfect, so must be some configuration errors.
Do anyone know what the errors are?

Running Biber manually returns:
INFO - This is Biber 2.2
INFO - Logfile is 'main.blg'
INFO - Reading 'main.bcf'
WARN - Warning: Found biblatex control file version 2.9, expected version 2.8
INFO - Found 46 citekeys in bib section 0
INFO - Processing section 0
INFO - Looking for bibtex format file 'citations.bib' for section 0
INFO - Decoding LaTeX character macros into UTF-8
INFO - Found BibTeX data source 'citations.bib'
WARN - Duplicate entry key: '7027553' in file 'citations.bib', skipping ...
WARN - Entry ok2006 does not parse correctly
WARN - ISBN '159829556X, 9781598295566' in entry 'Hoelzle' is invalid - run biber with '--validate_datamodel' for details.
WARN - Datamodel: Entry 'oracle' (citations.bib): Invalid format 'n.d' of date field 'date' - ignoring
ERROR - BibTeX subsystem: C:\Users\BILALA~1\AppData\Local\Temp\AI_7lm2bHk\citations.bib_7640.utf8, line 585, syntax error: at end of input, expected one of: name (entry type, key, field, or macro name) or end of entry ("}" or ")")
INFO - WARNINGS: 5
INFO - ERRORS: 1
Process exited with error(s)
bibernotbibtexsince you backend is biber. – Bernard Feb 20 '16 at 17:59.blgshows quite some problems. Firstly, your versions ofbiblatexand Biber don't match. Update your distribution before you proceed (see How should one maintain and update a MiKTeX installation?; please note that currently some MikTeX mirrors might be down and might not respond, if you can't make an update don't panic, wait till tomorrow and try again). Also check the other warnings: You seem to have at least two7027553s, inHoelzleyou should only give one ISBN in theisbnfield, ... – moewe Feb 20 '16 at 18:18oracle, so drop thedatefield ("n.d." can be added automatically), the entryok2006does not parse correctly check for missing commas and braces. Then something is not quite right around line 585, check for missing braces there as well. Finally note that you have to run LaTeX after you have run Biber to get to see the bibliography. Normally one runs (in this order) (pdf)LaTeX, Biber, (pdf)LaTeX, (pdf)LaTeX. See also Question mark instead of citation and Troubleshooting for biber. – moewe Feb 20 '16 at 18:20.bibfile. – moewe Feb 25 '16 at 09:02