[pgadmin-hackers] Patch: New field in frmMain statusbar

2015-09-13 Thread Adam Scott
Hi, please consider this patch to frmMain. Situation: When a user has a large number of databases and connections, when they select a table or other object in the Object browser tree, they can lose track of which connection and database the object belongs too. This makes it really easy for the u

[pgadmin-hackers] [PATCH] Add Commit/Rollback toolbar action version 2

2015-09-13 Thread John Obaterspok
Hello, I'm updated the patch to add commit/rollback actions in the toolbar with the following: 1) updated icons (based on existing pgadmin icon with arrows drawn by me) 2) add entry to menu as well 3) disable icons when not in a transaction 4) Ctrl+Shift C|R shortcut Hopefully all issues are reso

Re: [pgadmin-hackers] [PATCH] Add ElapsedTimeToString to format execution time in a more readable manner (instead of showing everything as msec)

2015-09-13 Thread John Obaterspok
Hi, Was the patch to format execution time in a more readable manner okay? Never got any feedback from the updated version. Regards, John 2015-06-15 21:28 GMT+02:00 John Obaterspok : > Hi, > > Attached is an updated patch. > > -- john > > 2015-06-12 6:50 GMT+02:00 Ashesh Vashi : > >>

Re: [pgadmin-hackers] [PATCH] Add ElapsedTimeToString to format execution time in a more readable manner (instead of showing everything as msec)

2015-09-13 Thread Ashesh Vashi
Hi John, These lines should be part of this patch. *@@ -2522,7 +2523,7 @@ bool frmQuery::isBeginNotRequired(wxString query) /* * Check word length (since "beginx" is not "begin"). */- while(wxIsalpha(query.GetChar(wordlen)))+ while(wordlen < query.Length() && wxIsalpha(query.GetC