I have trigger created in my database. I need to pass PHP variable to that trigger.
I tried executing something like this in PhpMyAdmin:
SET @myVariable = 123;
INSERT INTO table (foo) VALUES (bar);
Trigger successfully take @myVariable - So I tried it in Nette project, but I was not successfull.
First, Prepared Statement can execute only one command, so I am not able to call SET and INSERT together.
Then I found information that variable should be valid for whole connection, so I tried call $database->query('SET @myVariable = 123');
after connecting to database. Then I tried INSERT. But again, I was not successfull.
Anybody have any idea how to pass PHP variable to trigger?
For some reason, the problem was when I used variables with string. When I assigned integer value to variable, everything is working fine.