darkain / pudl

PHP Universal Database Library - connects to and generates queries for SQL Servers
BSD 2-Clause "Simplified" License
28 stars 5 forks source link

Add comment support to queries #11

Open darkain opened 4 years ago

darkain commented 4 years ago

eg: SELECT / some notes / FROM blah

Doing this enables a few debugging things. 1) they show up in (slow) query logs. 2) $pudl->query() will contain this additional text.

API: $pudl->comment('some notes')->row('blah');