Re: [pgadmin-support] where are the query output tuples stored

2011-03-15 Thread Dave Page
On Tue, Mar 15, 2011 at 10:01 AM, Qiqi YU wrote: > 2011/3/14 Dave Page : >> On Mon, Mar 14, 2011 at 2:39 PM, Qiqi YU wrote: >>> Hi Dave, >>> >>> Thanks for your fast reply. As I went through the code of function >>> ctlSQLResult::DisplayData(bool single), there seems to be no calling >>> of wxGri

Re: [pgadmin-support] where are the query output tuples stored

2011-03-15 Thread Qiqi YU
2011/3/14 Dave Page : > On Mon, Mar 14, 2011 at 2:39 PM, Qiqi YU wrote: >> Hi Dave, >> >> Thanks for your fast reply. As I went through the code of function >> ctlSQLResult::DisplayData(bool single), there seems to be no calling >> of wxGrid Control to display data?  My understanding is that the >

Re: [pgadmin-support] where are the query output tuples stored

2011-03-14 Thread Dave Page
On Mon, Mar 14, 2011 at 2:39 PM, Qiqi YU wrote: > Hi Dave, > > Thanks for your fast reply. As I went through the code of function > ctlSQLResult::DisplayData(bool single), there seems to be no calling > of wxGrid Control to display data?  My understanding is that the > displayData function would s

Re: [pgadmin-support] where are the query output tuples stored

2011-03-14 Thread Qiqi YU
Hi Dave, Thanks for your fast reply. As I went through the code of function ctlSQLResult::DisplayData(bool single), there seems to be no calling of wxGrid Control to display data? My understanding is that the displayData function would set up the frame of the outputs (i.e. all the column attribut

Re: [pgadmin-support] where are the query output tuples stored

2011-03-14 Thread Dave Page
On Sun, Mar 13, 2011 at 3:37 PM, Qiqi YU wrote: > Hi Dave, > > > Thanks for your reply! However, I still have a few doubts: > 1: In which stage is the output tuples displayed? Is that within the > OnQueryComplete function? void ctlSQLResult::DisplayData(bool single) is where things are setup for

Re: [pgadmin-support] where are the query output tuples stored

2011-03-13 Thread Qiqi YU
Hi Dave, Thanks for your reply! However, I still have a few doubts: 1: In which stage is the output tuples displayed? Is that within the OnQueryComplete function? 2: May I know where is this sqlResultTable::GetValue function called? 3: Also what is the difference between ctlSQLResult and sqlResul

Re: [pgadmin-support] where are the query output tuples stored

2011-03-08 Thread Dave Page
On Tue, Mar 8, 2011 at 5:18 PM, Raymond O'Donnell wrote: > On 08/03/2011 11:43, Qiqi YU wrote: >> >> Hi Raymond, >> >> That could be one possible way. >> The thing is I need to extend the current pgAdmin tool, such as adding >> a new tuple to the output panel (the output panel would contain many >

Re: [pgadmin-support] where are the query output tuples stored

2011-03-08 Thread Qiqi YU
Sure. Thank you very much for your time. :-) 2011/3/8 Raymond O'Donnell : > On 08/03/2011 11:43, Qiqi YU wrote: >> >> Hi Raymond, >> >> That could be one possible way. >> The thing is I need to extend the current pgAdmin tool, such as adding >> a new tuple to the output panel (the output panel wou

Re: [pgadmin-support] where are the query output tuples stored

2011-03-08 Thread Raymond O'Donnell
On 08/03/2011 11:43, Qiqi YU wrote: Hi Raymond, That could be one possible way. The thing is I need to extend the current pgAdmin tool, such as adding a new tuple to the output panel (the output panel would contain many tuples of resultant data). So which function in pgAdmin does the job of crea

Re: [pgadmin-support] where are the query output tuples stored

2011-03-08 Thread Qiqi YU
Hi Raymond, That could be one possible way. The thing is I need to extend the current pgAdmin tool, such as adding a new tuple to the output panel (the output panel would contain many tuples of resultant data). So which function in pgAdmin does the job of creating the output table and filling in t

Re: [pgadmin-support] where are the query output tuples stored

2011-03-08 Thread Raymond O'Donnell
On 08/03/2011 02:47, Qiqi YU wrote: Hi Raymond, Thanks a lot for your reply. For my project, I need to get outputs of different queries and highlight their differences. Kevin Hi Kevin, Please do keep your replies on the list. psql has an -o option to send query output to a file, and you co

Re: [pgadmin-support] where are the query output tuples stored

2011-03-07 Thread Raymond O'Donnell
On 07/03/2011 07:19, Qiqi YU wrote: Hi everyone, I am currently working on a PgAdmin project. The thing is I need to retrieve the query output tuples (Before they are inserted into the table in the output panel). Does anyone know where are these output tuples stored? I wouldn't imagine that yo

[pgadmin-support] where are the query output tuples stored

2011-03-06 Thread Qiqi YU
Hi everyone, I am currently working on a PgAdmin project. The thing is I need to retrieve the query output tuples (Before they are inserted into the table in the output panel). Does anyone know where are these output tuples stored? I have been stuck on this problem. Hope someone could help me. Tha