You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for publishing this library, it looks really promising and straightforward to use.
I currently have an implementation using the HTTP interface which lets me do parameterised queries like so:
# query not URL encoded for ease of reading
http://localhost:8123/?query=select * from t where event_type = {type:String};¶m_type=click
Would it be possible to introduce this feature? I know there are encoding functions but it would be good to make ClickHouse do the work, I'm just not sure how.
Possible interface:
$client->query( 'select * from t where event_type = {type:String}', [
'type' => 'click',
] )
The text was updated successfully, but these errors were encountered:
Hi, thanks for publishing this library, it looks really promising and straightforward to use.
I currently have an implementation using the HTTP interface which lets me do parameterised queries like so:
Would it be possible to introduce this feature? I know there are encoding functions but it would be good to make ClickHouse do the work, I'm just not sure how.
Possible interface:
The text was updated successfully, but these errors were encountered: