christianparpart / Lightweight

thin and lightweight, fast, ODBC API wrapper for modern C++ uses
5 stars 1 forks source link

Add column name aliasing #60

Closed christianparpart closed 1 month ago

christianparpart commented 1 month ago

example output:

SELECT that.foo as bar FROM this AS that;

suggested api

SqlQueryBuilder::FromTableAs("this", "that").SelectAs("foo", "bar").All();
christianparpart commented 1 month ago

Done