Roland Bock

Results 115 comments of Roland Bock

Hi, There is no library support for enum data as of now. I would want SQL-enum values to be mapped to C++ enum values, which seems difficult without reflection. Or...

Thanks for the link. That looks pretty cool. But it is indeed black magic (very clever, though). I would not want to integrate that into the sqlpp11 because it depends...

There is minimal support to the extent that `select(avg(foo.omega).over())` will be interpreted as `SELECT AVG(tab_foo.omega) OVER() AS avg_` The `over` function does not support any arguments itself as of today.

Thanks for the report. I obviously got confused with some of the new rules. It seems I could use the comma operator in a fold expression instead.

Good question! I looked briefly at the MySQL documentation and did not find a good way of checking. Thus, a validity check would be connector-specific (at best). If a specific...

That looks pretty neat to me :-) Thanks for sharing!

It depends on the connector. In the case of Postgresql, prepared statements are identified by a name. The prepared statement therefore is mostly a reference to the connection and a...

Cool. Please share with the postgresql connector team :-)

Thanks for adding these functions. However, I think your commit is based on a rather old version of sqlpp11?

I suspect you created the fork off the master branch which was replaced by the main branch quite a while ago. A lot of repositories have made this transition. In...