To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85792
Issue #|85792
Summary|no links between views
Component|Database access
Version|OOo 2.3.1
Platform|All
URL|
OS/Version|All
Status|UNCONFIRMED
Status whiteboard|
Keywords|
Resolution|
Issue type|DEFECT
Priority|P3
Subcomponent|none
Assigned to|jbu
Reported by|viandor
------- Additional comments from [EMAIL PROTECTED] Fri Feb 1 10:10:35 +0000
2008 -------
In postgres, i have the following tables/views structure:
---------------------------------------------------------
CREATE TABLE T1
(
ID_T1 serial NOT NULL,
INFO varchar(50) NOT NULL,
CONSTRAINT PK_T1 PRIMARY KEY (ID_T1)
)
CREATE TABLE T2
(
ID_T2 serial NOT NULL,
ID_T1 int4 NOT NULL,
INFO varchar(50) NOT NULL,
CONSTRAINT PK_T2 PRIMARY KEY (ID_T2),
CONSTRAINT FK_T2_T1 FOREIGN KEY (ID_T1) REFERENCES T1 (ID_T1)
);
CREATE VIEW v_t1 AS SELECT * FROM T1;
CREATE VIEW v_t2 AS SELECT * FROM T2;
---------------------------------------------------------
I'm building a request with OooBase. If i select T1 and T2, links (relations)
between tables are OK (t2.id_t1 = t1.id_t1).
If i select v_t1 and v_t2, OooBase don't "guess" the links between the two
views.
By comparison, it does work with MS-Access.
We are really bored, because we can't use OooBase without the capacity to show
(auto-detect) links between views.
Is there any way to autodetect links between views (i mean we don't want to
manually create links, because our database is too big)?.
Could it be a new feature, an enhancement?
Any help / reply appreciated.
[Ooo 2.3.1 + SDBC 0.7.5 + postgresql 8.2 - on windows XP]
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]