\r
Date Dev Ver Change details\r
---------- --- ----- --------------\r
+2008-10-13 DP 1.9.0 Fix the edit grid to work with bit(x).\r
2008-09-15 MH 1.9.0 Add pgScript scripting framework [Mickael Deloison - GSoC]\r
2008-09-08 DP 1.9.0 Add support for variadic functions in PostgreSQL 8.4+.\r
2008-09-04 DP 1.9.0 Ensure we never try to refresh the Servers node.\r
str = wxT("''");
else if (type == PGOID_TYPE_BOOL)
str = value;
+ else if (type == PGOID_TYPE_BIT)
+ // Don't cast this one
+ return wxT("B'") + value + wxT("'");
else
str = conn->qtDbString(value);