Re: Intelligent Database in postgreSQL

From: "Josh Tolley" <eggyknap(at)gmail(dot)com>
To: "Rodrigo Faccioli" <faccioli(dot)postgresql(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Intelligent Database in postgreSQL
Date: 2007-08-07 02:37:33
Message-ID: e7e0a2570708061937o16e36063p77ba2d24fed4b087@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 8/6/07, Rodrigo Faccioli <faccioli(dot)postgresql(at)gmail(dot)com> wrote:
> Hi,
>
> I'm a new user's postgreSQL and I have a question: Is possible add function
> of intelligent System like Neural Networks or Fuzzy Logic within postgre
> SGDB?
>
> For example: I have a database and I want to execute a select instruction.
> But, this select constains there is column that uses a Perceptron Neural
> Networks for return a result, follow below:
>
> Select perceptron(vendas_cli)
> from client
> Where vendas_cli > 1000
>
> Thanks,

PostgreSQL allows you to add your own functions in any of several
different languages, including Perl and C. If you can code your
perceptron function in one of the languages PostgreSQL understands,
you can do exactly what you suggest. Refer to
http://www.postgresql.org/docs/8.2/static/xplang.html for starter
documentation.

- Josh

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Naz Gassiep 2007-08-07 05:22:03 Removing a schema
Previous Message Rich Shepard 2007-08-07 02:37:09 Re: Intelligent Database in postgreSQL