Re: [SQL] Triggers to create Tables

From: Martin Möderndorfer <mmoedern(at)linux(dot)stuco(dot)uni-klu(dot)ac(dot)at>
To: "Anatoly K(dot) Lasareff" <tolik(at)icomm(dot)ru>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Triggers to create Tables
Date: 1999-02-20 11:33:57
Message-ID: 36CE9DA5.3A838037@linux.stuco.uni-klu.ac.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hm,

Stylesheets do not change often, it would be better to read them from
textfile than querying the database at the beginning of each html file
which includes it.

MArtin

"Anatoly K. Lasareff" wrote:
>
> >>>>> "d" == derndorfer <Martin> writes:
>
> d> hi,
> d> this is the part II of a question i already asked:
>
> d> i have some tables:
> d> create table css_class(nr int4, classname varchar(50));
> d> create table css_prop(nr int4, name varchar(50), val varchar(50),
> d> classnr int4);
> d> (css_prop.classnr foreign key-> css_class.nr)
>
> d> i would need a trigger on update and insert who takes all entries from
> d> the tables above and put them into a textfile in the following stype
>
> d> .n-th_of_css_class {
> d> n-th_of_css_prop.name(*) : n-th_of_css_prop.val(*);
> d> n+1-th_of_css_prop.name(*): [...]
> d> }
> d> .n+1-th_of_css_class { [...]
>
> d> with other words: i want to create a cascading style sheet out of the
> d> table:
> d> css files look something like that
>
> d> .cassname {
> d> property1 : value_prop1;
> d> property2 : value_prop2;
> d> [...]
> d> }
> d> [...]
>
> d> Can anyone help?
> d> a c-function would be ok too (_really_ think that i need one) but the
> d> file has to be created by the database itself.
>
> d> Idea for the future: whole html pages built out of the databased
> d> resulted by trigger/query combination. (not the question _yet_)
>
> d> MArtin
>
> I think this is bad idea to build text file every time you change the
> tables. What about external program (on C, Perl... etc) what rebuilds,
> pehaps incrementally, file(s) with changed data? Or creating style
> sheets and html pages 'on the fly' with any cgi-script?
>
> --
> Anatoly K. Lasareff Email: tolik(at)icomm(dot)ru
> Senior programmer

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Hannu Krosing 1999-02-20 12:39:44 Re: [HACKERS] Re: [SQL] SQL-Query 2 get primary key
Previous Message Anatoly K. Lasareff 1999-02-20 11:20:38 Re: [SQL] Triggers to create Tables