Вопрос

I am developing a joomla component. I need to import a sql view in my project.

create view view_name as select * from my_table

Это было полезно?

Решение

How you tried in your xml file add something like

<install>
        <sql>
            <file charset="utf8" driver="mysql">install.sql</file>
        </sql>
    </install>
<uninstall>
        <sql>
            <file charset="utf8" driver="mysql">uninstall.sql</file>
        </sql>
    </uninstall>

And the install.sql file should have the query. Also make sure the DB user have permission to add new tables.

Its Done!

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top