cpp-active-record
cpp-active-record copied to clipboard
Handle different query parameter placeholders
Placeholders are different between SQLite ('?') and PostgreSQL ('$1')
Currently test/postgresql_connection_test.cpp uses $n and test/sqlite3_connection_test.cpp uses $.
Allow use of $ in both.