[pgadmin-support] return composite type quoting

2004-09-15 Thread Ivan
tion"(int4); CREATE OR REPLACE FUNCTION "SomeFunction"("arg" int4) RETURNS SomeCompositeType AS instead of expected -- DROP FUNCTION "SomeFunction"(int4); CREATE OR REPLACE FUNCTION "SomeFunction"("arg" int4) RETURNS

[pgadmin-support] alter table bug

2004-12-11 Thread Ivan
tp://www.pgadmin.org/snapshots/win32 works again. -- Best regards, Ivan mailto:[EMAIL PROTECTED] ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

[pgadmin-support] Bug in a table properties dialog

2004-12-11 Thread Ivan
st regards, Ivan mailto:[EMAIL PROTECTED] ---(end of broadcast)--- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get

[pgadmin-support] Grant wizard for function privileges bug

2004-12-11 Thread Ivan
GRANT EXECUTE ON FUNCTION ... statements are generated only when i set "ALL" checkbox in the Privileges tab. -- Best regards, Ivan mailto:[EMAIL PROTECTED]<> ---(end of broadcast)--- TIP 5: Have you chec

[pgadmin-support] feature request

2005-02-07 Thread Ivan
n the list? (It concerns all lists). Thank you for support! -- Best regards, Ivan mailto:[EMAIL PROTECTED] ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings

[pgadmin-support] "Drop cascade" feature request

2005-02-08 Thread Ivan
Hello, If it possible to add "Drop cascade" menu item to context menu of any object that other objects may depend on? Thank you for support! -- Best regards, Ivan mailto:[EMAIL PROTECTED] ---(end of broadcast)---

[pgadmin-support] Bug in CHECK constraints statement reverse engineering.

2005-05-19 Thread Ivan
aterZero"(int4) RETURNS bool AS $BODY$ select $1 > 0; $BODY$ LANGUAGE 'sql' VOLATILE SECURITY DEFINER; ALTER FUNCTION "Check_IntegerGreaterZero"(int4) OWNER TO postgres; - It will be convenient for me if the first line

Re: [pgadmin-support] Bug in CHECK constraints statement reverse engineering.

2005-05-20 Thread Ivan
t;(VALUE); though function were renamed. By the way it will be great to add quoting of domain's constraint name in the definition pane (right bottom). Thank you for support. -- Best regards, Ivanmailto:[EMAIL PROTECTED] ---(end

[pgadmin-support] a few small bugs

2005-05-28 Thread Ivan
NCTION "Check_IGZ"("in_Value" int4) RETURNS bool AS $BODY$ select $1 > 0; $BODY$ LANGUAGE 'sql' VOLATILE SECURITY DEFINER; - missed parameter name. Though parameter name is not important for sql procedure language I prefer to specify it - maybe later I&#

[pgadmin-support] Composite type creation issues

2005-10-29 Thread Ivan
Hello, PgAdmin 1.4.0beta3. There are two issues with composite type creation: - when you add numeric field, precision text box is disabled and lenght textbox value is discarded - field names aren't quoted automaticaly Thank you for support. -- Best regards,

Re: [pgadmin-support] Composite type creation issues

2005-11-03 Thread Ivan
Hello Dave, Tuesday, November 1, 2005, 12:01:55 AM, you wrote: DP> >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On Behalf Of Ivan >> Sent: 29 October 2005 10:05 >> To: pgadmin-support@postgresql.org >> Su

Re: [pgadmin-support] password encyption

2002-03-19 Thread Ivan Horvath
_ivan password=ivan");i tried also: $conn = pg_Connect("host=192.168.1.30 port=5432 dbname=PMS2500 user=pms_ivan password=md5('ivan')");echo $conn; it is not working, what encryption method i have to use?   Ivan - Original Message - From: Dave Page To:

password encyption

2002-03-13 Thread Ivan Horvath
Hi All,   i created a user in pgadmin, specified a password of course. the user is created, but the password is encypted somehow., i cannot log in anymore!!! please help me, what is the problem Best Regards, Iván HorváthChief Programmer Alcatel NSDPMS 2000 Product Team H-1116, BudapestKondo

Re: password encyption

2002-03-13 Thread Ivan Horvath
want to connect this user to the database, what kind encyption method i have to use?   Ivan   - Original Message - From: Dave Page To: mailto:[EMAIL PROTECTED]";>'Ivan Horvath' ; mailto:[EMAIL PROTECTED]";>[EMAIL PROTECTED] Sent: Wednesday,

[pgadmin-support] R: porting for redhat 8.0

2003-12-03 Thread Ivan Luzzi
> What specific problems are you having with the binary distribution on > RH 8? Where did you download the binary distribution from? The more > information you can provide, the easier it will be for us to help you. > > ahp > On Monday, Dec 1, 2003, at 04:38 US/Eastern

[pgadmin-support] Bug report

2004-09-01 Thread Ivan-Sun1
efinition dialog i can't create the function because of error 'type "areasthemesstatistics_get4areatype" does not exist" bug #2 in table editor (view) dialog i can't insert a row in the table which does not contain oid field (created without oids) thank you f

[pgadmin-support] Bug report

2004-09-05 Thread Ivan-Sun1
can see in attached file (field "Balance" numeric(18,9) and other numeric fields occupies 2 rows because of comma in the type definition). --- thank you for support. -- Best regards, Ivan mailto:[EMAIL PROTE

[pgadmin-support] Crash when editing object properties

2004-09-14 Thread Ivan Nejgebauer
This should be reproducible: 1. Connect to the database of your choice. 2. Navigate to the "Tables" node in the tree view and select it. The list of tables appears in the upper right pane. 3. Select a table in the upper right pane. 4. Click the "Display/Edit Properties" button in the toolbar. *BO

Re: [pgadmin-support] Crash when editing object properties

2004-09-15 Thread Ivan Nejgebauer
Andreas Pflug wrote: 4. Click the "Display/Edit Properties" button in the toolbar. *BOOM* Confirmed as bug on **ix, patch committed to cvs. It's FindFocus, my old friend on GTK reporting bogus controls. I applied the cvs patch and it works. Thanks, i. ---(end of broadcast)-

Re: [pgadmin-support] crash in FC2

2004-09-16 Thread Ivan Nejgebauer
Diego A. Gil wrote: Hi, I am having some strange behavior in Fedora Core 2. I compiled a cvs version, checked out today 16 september. When I try to add a new table, or database, etc, pgadmin3 crash without any notice or warning, without logging anything. A new bug ?. It's a side effect of the fix

[pgadmin-support] Patch: view data for tables/views on double click

2004-09-16 Thread Ivan Nejgebauer
The attached patch a) defines a double click handler for the list in the properties pane, so that a double click on an item in the list launches the properties editor for the item (or the data view if the item is a table or a view); and b) modifies the tree view double click handler so that a d

[pgadmin-support] Patch: password style for the "Add Server" dialog

2004-09-16 Thread Ivan Nejgebauer
The password text field in the "Add Server" dialog lacks the password style option, so the password is displayed in the clear when typed in. The attached patch fixes it. i. --- src/ui/common/dlgServer.xrc.old Sun Aug 15 21:21:49 2004 +++ src/ui/common/dlgServer.xrc Thu Sep 16 11:48:12 2004 @

[pgadmin-support] Can't compile pgadmin

2007-04-23 Thread ivan . pavlov
Hello, I have a problem compiling the pgadmin svn trunk. The error message is if gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/postgresql -DSSL - I/usr/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/include/wx-2.8 - D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -O2 -I/usr/include/ libxml2 -

[pgadmin-support] Vista Compatible

2008-08-11 Thread Ivan Prueitt
Can I use pgadmin on vista Ultima? Ivan Prueitt PhoenX Group Inc 831-277-7025 831 621-8043 <>

[pgadmin-support] Make pgadmin3 1.20, wxwidgets problems

2015-03-07 Thread Ivan Pantic
d somewhere, or I messed up my wxwidgets install. Any ideas where I should start looking? Thanks, Ivan