Skip to:
Java and C# drivers have the ability to use named placeholders for prepared statements:https://docs.datastax.com/en/developer/java-driver/3.0/manual/statements/prepared/
But PHP has no possibility to do this. Can this functionality be implemented for PHP too?
@Michael Fero, thanks for the quick reply.
Yes, I know about ? placeholders. But I'm talking about the named ones. Example from Java documentation:
?
PHP client doesn't provide the bind method.
bind
This feature has already been implemented by PHP-67: see feature example here.
Java and C# drivers have the ability to use named placeholders for prepared statements:
https://docs.datastax.com/en/developer/java-driver/3.0/manual/statements/prepared/
But PHP has no possibility to do this. Can this functionality be implemented for PHP too?