Showing posts with label useparameters. Show all posts
Showing posts with label useparameters. Show all posts

Friday, March 9, 2012

MYSQL and Reporting Server

Hi All,
Not sure if this is the best place to ask this, but how can I use
parameters in a report connecting to a MYSQL database.
Thanks
Michael
Use ? as the parameter marker e.g.
select * from mysqlcode.categories where ID = ?
HTH
Jasper Smith (SQL Server MVP)
http://www.sqldbatips.com
I support PASS - the definitive, global
community for SQL Server professionals -
http://www.sqlpass.org
"Michael van der Veeke" <michaelvanderveeke@.borderexpress.com.au> wrote in
message news:41e36ad1$0$96867$c30e37c6@.ken-reader.news.telstra.net...
> Hi All,
> Not sure if this is the best place to ask this, but how can I use
> parameters in a report connecting to a MYSQL database.
> Thanks
> Michael
|||Thank you very much.
Jasper Smith wrote:
> Use ? as the parameter marker e.g.
> select * from mysqlcode.categories where ID = ?
>