yes, same problem here, but it was installed on "C:\".
Moved docs, ui and the exe to the proper directory and it worked
flawlessly.
--- Mikko Korkalo <__> wrote:
> Hi, I believe the win32 installer in this file:
> pgadmin3-1_2_0-rc1.zip
>
> is broken. If I choose to install to C:\Program Files
Hi All,
small issue on the table generator:
the create sentence for a table that inherits from two other tables is
erroneous.
my example:
CREATE TABLE test1
(
test1_id int4,
test1_value text
);
CREATE TABLE test2
(
test2_id int4,
test2_value text
);
CREATE TABLE test3
(
)
INHERITS (test1,