Is it possible to make a query using any of the methods of dsql() ?
something like:
$dq=$this->api->db->dsql()->execute('insert into table xx (field1,field2) values ('a','b')');
Thanks
|
Is it possible to make a query using any of the methods of dsql() ? something like:
Thanks
| ||||
|
feedback
|
Naturally you can also use
| |||
|
feedback
|
|
Romans already showed an example of an insert. You can select an array of data like this (note the debug() is optional and will output the resulting sql statement at top of the page)
and then loop through the result set to do something
just select a single value
You can update records
and delete records
Where possible, it's best to use models like below to persist your data but the nice thing about ATK4 is it doesnt get in the way so if you need to, you can execute SQL anywhere in your page to achieve a simple result.
| ||||
|
feedback
|