Googling for "CREATE VIEW command denied to user 'username@host' for
table" gave me "
http://bugs.mysql.com/bug.php?id=17900". Maybe this is
the problem you're experiencing.
When adding interfaces for entities and vies the basic methods are
automatically created for you. You can add your own methods to the
interfaces and you can remove automatically generated methods. Read
more in the article "Interface Modeling".
The PHP code generator creates one database access class, one web
service wrapper class and one proxy class for each interface in the
RISE model. Each class i placed in a separate file. It also creates
the WSDL - SOAP specification - file needed for other application when
using the web services. All files are generated in UTF8 without BOM
for ease of use.
You can either include the database access classes and the proxy
classes in your existing PHP application or you can use the generated
code a complete, ready-to-use, web services. To make use of the
generated code directly in your own PHP application, simply throw away
the web service files and the WSDL-file. The proxy classes exists
solely for your convenience, it's easier to access the database
through them than using the database access classes directly.
The database access classes are stored in files named <model
prefix>.DB.<Interface>.php. The file implements all methods found in
the corresponding RISE model interface. The web service classes are in
files named <model prefix>.WS.<Interface>.php and proxy class in
<model prefix>.Proxy.<Interface>.php. The WSDL file is named <model
prefix>.WSDL.<Interface>.xml.
To make use of the web service a configuration file is needed. It
should contain the database connection information and should be named
<model prefix>.config.php. This file isn't generated automatically,
see connection string for further details.
Best regards,
RISE to Bloome Software
> > > Thanks in advance for any help.- Hide quoted text -
>
> - Show quoted text -