Here is a a solution which requires biblatex 2.3 and biber 1.3 (both in DEV on SF). Firstly, let's allow a new "AUTOURL" field in all entries so we can populate this as we probably don't want to use the URL field as it can be printed in the bibliography. We can change our driver to test for the AUTOURL field and to add a hyperlink on the title or whatever. Here I'm concentrating just on generating the url data for this.
Add this to your biblatex-dm.cfg
\DeclareDatamodelEntryfields{autourl}
\DeclareDatamodelFields[type=field, datatype=uri]{autourl}
Now we do the real work with the biber sourcemap feature which is better than hard-coding all this as we can then create arbitrary URLs:
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map[overwrite]{
\step[fieldset=autourl, fieldvalue={http://scholar.google.com/scholar?q="}]
\step[fieldsource=title]
\step[fieldset=autourl, origfieldval, append]
\step[fieldset=autourl, fieldvalue={"+author:}, append]
\step[fieldsource=author, match=\regexp{\A([^,]+)\s*,}]
\step[fieldset=autourl, fieldvalue={$1}, append]
\step[fieldset=autourl, fieldvalue={&as_ylo=}, append]
\step[fieldsource=year]
\step[fieldset=autourl, origfieldval, append]
\step[fieldset=autourl, fieldvalue={&as_yhi=}, append]
\step[fieldset=autourl, origfieldval, append]
}
}
}
Biber will also URL escape any UTF-8 or LaTeX char macros which end up in the URL due to splicing in parts of other fields so you don't have to worry about that.
This results in a field in the .bbl like this:

Which you can reference as the "AUTOURL" field in some logic such as the TITLE field format to add it as a hyperref link. To take a simple example:
\DeclareFieldFormat{title}{\href{\thefield{autourl}}{#1}}
Here is a more sophisticated example that works for all entry types in their default configuration without changing it and uses the auto-generated URL only when no custom one is available:
\DeclareFieldFormat{title}{\iffieldundef{url}{\href{\thefield{autourl}}{\mkbibemph{#1}}}{\href{\thefield{url}}{\mkbibemph{#1}}}}
\DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished]{title}{\iffieldundef{url}{\href{\thefield{autourl}}{\mkbibquote{#1\isdot}}}{\href{\thefield{url}}{\mkbibquote{#1\isdot}}}}
\DeclareFieldFormat[suppbook,suppcollection,suppperiodical]{title}{\iffieldundef{url}{\href{\thefield{autourl}}{#1}}{\href{\thefield{url}}{#1}}}
Only the url field is used to replace autourl, not URLs generated from doi or eprint. A production version should also respect \ifhyperref and should be made more robust against missing fields.
q=part, or do something more complex. Which fields do you want, and how 'sophisticated' are you after? – Joseph Wright Aug 30 '12 at 16:50"Rocket Science" author:doeand you will get a line that says that you're searching in the timeframe 1999--1999. – Christian Aug 31 '12 at 06:24expl3). – Joseph Wright Aug 31 '12 at 06:37