On Jun 17, 2008, at 8:05 PM, Gareth Pidgeon wrote:
> Actually can see the difference between what works and what doesn't.
>
> If I do this it doesn't work:
>
> bool database::AddRow (string A,
> string B,
> string C)
> {
>
> RowTyoe newRow (mysqlpp::String (A),
> mysqlpp::String (B),
> mysqlpp::String (C));
>
> }
>
> If I do this it does
>
> bool database::AddRow (string A,
> string B,
> string C)
> {
> mysqlpp::String A2 (A);
>
> RowTyoe newRow (A2,
> mysqlpp::String (B),
> mysqlpp::String (C));
>
> }
I still want to see the SSQLS declarations. I can't help you without
seeing how the SSQLS is defined.