How to create a VIEW instead of a TABLE?

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
suesayram
Posts: 2
Joined: 2016-06-08 14:32

How to create a VIEW instead of a TABLE?

Post by suesayram » 2016-06-12 06:20

Hi All,

I can create a view in MySQL easily enough..

Code: Select all

CREATE VIEW view_name AS
SELECT column_name(s)
FROM table_name
WHERE condition
but I don't see how to do this in AppGini. Am I missing anything?

Sue

DevGiu
AppGini Super Hero
AppGini Super Hero
Posts: 151
Joined: 2016-05-27 09:08

Re: How to create a VIEW instead of a TABLE?

Post by DevGiu » 2016-06-15 07:30

Agree. I use a lot of Views on my project and I need to "connect" AppGini "tables views" with them.
/Giuseppe
Professional Outsourcing Services

Noha Eshra
Moderator
Posts: 82
Joined: 2013-11-11 19:21

Re: How to create a VIEW instead of a TABLE?

Post by Noha Eshra » 2016-06-15 08:55

This is currently not supported in AppGini, yet we are planning on implementing it in future releases.

Please check this forum thread where a user suggests a way of implementing views in AppGini.
http://forums.appgini.com/phpbb/viewtop ... 101&p=1904

Post Reply