PGSQL: Autoreconnect improvement

git-svn-id: svn://ultimatepp.org/upp/trunk@2699 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2010-09-17 15:44:57 +00:00
parent 540202ebc3
commit 12ca84d0b6
6 changed files with 17 additions and 15 deletions

View file

@ -91,21 +91,23 @@ of type derived from T.&]
element.&]
[s3;%- &]
[s4;%- &]
[s5;:Array`:`:Add`(const T`&`):%- [@(0.0.255) void]_[* Add]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
[s5;:Array`:`:Add`(const T`&`):%- [*@4 T][@(0.0.255) `&]_[* Add]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x])&]
[s2; Adds a new element with specified value to the Array.&]
[s6; Requires T to have deep copy constructor.&]
[s6; Invalidates iterators to the Array.&]
[s7; [*C@3 x]-|The value that is copied to newly created element.&]
[s7; [*/ Return value]-|Reference to new element in Array.&]
[s3;%- &]
[s4;%- &]
[s5;:Array`:`:AddPick`(pick`_ T`&`):%- [@(0.0.255) void]_[* AddPick]([@(0.128.128) pick`_]_
[*@4 T][@(0.0.255) `&]_[*@3 x])&]
[s5;:Array`:`:AddPick`(pick`_ T`&`):%- [*@4 T][@(0.0.255) `&]_[* AddPick]([@(0.128.128) pick`_
]_[*@4 T][@(0.0.255) `&]_[*@3 x])&]
[s2; Adds new element to the Array and picks value of parameter to
it. &]
[s6; Requires T to have pick constructor.&]
[s6; Invalidates iterators to the Array.&]
[s7; [*C@3 x]-|Source instance of T that is to be picked.&]
[s7; [*/ Return value]-|Reference to new element in Array.&]
[s3;%- &]
[s4;%- &]
[s5;:Array`:`:Add`(T`*`):%- [*@4 T][@(0.0.255) `&]_[* Add]([*@4 T]_`*[*@3 newt])&]

View file

@ -76,21 +76,23 @@ constructor.&]
element.&]
[s3;%- &]
[s4;%- &]
[s5;:Vector`:`:Add`(const T`&`):%- [@(0.0.255) void]_[* Add]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
[s5;:Vector`:`:Add`(const T`&`):%- [*@4 T][@(0.0.255) `&]_[* Add]([@(0.0.255) const]_[*@4 T][@(0.0.255) `&
]_[*@3 x])&]
[s2; Adds new element with specified value to Vector.&]
[s6; Requires T to have deep copy constructor.&]
[s6; Invalidates iterators and references to Vector.&]
[s7; [*C@3 x]-|The value that is copied to newly created element.&]
[s7; [*/ Return value]-|Reference to new element in Vector.&]
[s3;%- &]
[s4;%- &]
[s5;:Vector`:`:AddPick`(pick`_ T`&`):%- [@(0.0.255) void]_[* AddPick]([@(0.128.128) pick`_]_
[*@4 T][@(0.0.255) `&]_[*@3 x])&]
[s5;:Vector`:`:AddPick`(pick`_ T`&`):%- [*@4 T][@(0.0.255) `&]_[* AddPick]([@(0.128.128) pick
`_]_[*@4 T][@(0.0.255) `&]_[*@3 x])&]
[s2; Adds new element to Vector and picks value of parameter to it.
&]
[s6; Requires T to have pick constructor.&]
[s6; Invalidates iterators and references to Vector.&]
[s7; [*C@3 x]-|Source instance of T that is to be picked.&]
[s7; [*/ Return value]-|Reference to new element in Vector&]
[s3;%- &]
[s4;%- &]
[s5;:Vector`:`:AddN`(int`):%- [@(0.0.255) void]_[* AddN]([@(0.0.255) int]_[*@3 n])&]

View file

@ -39,7 +39,7 @@ int Ctrl::LoopLevel;
bool Ctrl::MemoryCheck;
bool Ctrl::Painting;
bool Ctrl::painting;
void Ctrl::SetData(const Value&) {}
Value Ctrl::GetData() const { return Value(); }

View file

@ -473,7 +473,7 @@ private:
static bool mouseinview;
static bool mouseinframe;
static bool globalbackpaint;
static bool Painting;
static bool painting;
static int LoopLevel;
static Ctrl *LoopCtrl;
static int64 eventid;
@ -1135,7 +1135,7 @@ public:
void RefreshFrame(int x, int y, int cx, int cy);
void RefreshFrame();
static bool IsPainting() { return Painting; }
static bool IsPainting() { return painting; }
void ScrollView(const Rect& r, int dx, int dy);
void ScrollView(int x, int y, int cx, int cy, int dx, int dy);

View file

@ -69,7 +69,7 @@ void SetWinceMouse(HWND hwnd, LPARAM lparam) {}
void AvoidPaintingCheck__()
{
Ctrl::Painting = false;
Ctrl::painting = false;
}
bool PassWindowsKey(int wParam);
@ -77,7 +77,7 @@ bool PassWindowsKey(int wParam);
LRESULT Ctrl::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) {
GuiLock __;
eventid++;
ASSERT_(!Painting, "WindowProc invoked while in Paint routine");
ASSERT_(!painting, "WindowProc invoked while in Paint routine");
// LLOG("Ctrl::WindowProc(" << message << ") in " << ::Name(this) << ", focus " << (void *)::GetFocus());
Ptr<Ctrl> _this = this;
HWND hwnd = GetHWND();
@ -117,11 +117,11 @@ LRESULT Ctrl::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) {
}
#endif
#ifdef _DEBUG
Painting = true;
painting = true;
#endif
UpdateArea(draw, Rect(ps.rcPaint));
#ifdef _DEBUG
Painting = false;
painting = false;
#endif
#ifndef PLATFORM_WINCE
if(draw.PaletteMode() && SystemDraw::AutoPalette())

View file

@ -363,8 +363,6 @@ bool PostgreSQLSession::ConnectionOK()
bool PostgreSQLSession::ReOpen()
{
DLOG("Reopen!");
// Open(conns);
PQreset(conn);
if(PQstatus(conn) != CONNECTION_OK)
{