> But the result depends how the columns look like. 

I have 2 views:

CREATE TABLE "Parents" (
     "Id"    INTEGER NOT NULL,
     "Name"  VARCHAR(100) NOT NULL
);

CREATE VIEW "ParentsView"("Id", "Name") AS
SELECT * FROM "Parents";




CREATE TABLE "Children" (
     "Id"        INTEGER NOT NULL,
     "ParentId"  INTEGER NOT NULL REFERENCES "Parents" ("Id") ON DELETE 
CASCADE,
     "Name"      VARCHAR(100) NOT NULL
);

CREATE VIEW "ChildrenView"("Id", "ParentId", "Name") AS SELECT * FROM 
"Children"




Do you see any problem with colums of this views?


------------------------------------------------------------------------------
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to