Hello friends, I am trying to create an open source project with phalcon. I am trying to create a database with phalcon codes like wordpress and drupal, that how on installation page they create even database something like 'CREATE DATABASE IF NOT EXISTS database
' or like that. So when I try to fire code
$this->db->execute('CREATE DATABASE IF NOT EXISTS database
');
its not working so can anyone tell me how can I create database within phalcon controller?
Thank you.