-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can we use multiple insert statement in FaaPz / PDO #104
Comments
I also want to know |
This is not supported yet, but probably should be. |
I am thinking about how to implement this and would like to get some feedback from you. I am thinking about modifying the |
Might be useful to accept an |
I have decided to support the multi-dimensional array approach as it is more inline with similar method usage and it is backward compatible. I will be pushing changes to the 2.1 branch tonight. I will tag this issue in vcs. |
This change requires some documentation updates... Anyone want to volunteer? |
INSERT INTO
employee
(eid
,ename
,email
,ebirthdate
) VALUES (null,'test','test1@*.com',1530101800), (null,'test','test@.com',1530101800)Can we create statement in slim pdo for multiple insert in one single query
The text was updated successfully, but these errors were encountered: