$OpenBSD: patch-sqlplusint_sql_query_cc,v 1.1 2002/08/10 20:07:02 wilfried Exp $
--- sqlplusint/sql_query.cc.orig	Sat May 19 18:44:48 2001
+++ sqlplusint/sql_query.cc	Fri Aug  9 16:10:14 2002
@@ -12,7 +12,7 @@
 
 SQLQuery::SQLQuery(const SQLQuery &q) {
   *this << q.str();
-  Success = q.Success;
+  Success_ = q.Success_;
   def = q.def;
 }
 
@@ -20,7 +20,7 @@ SQLQuery::SQLQuery(const SQLQuery &q) {
 SQLQuery& SQLQuery::operator = (const SQLQuery &q) {
   reset();
   *this << q.str();
-  Success = q.Success;
+  Success_ = q.Success_;
   def = q.def;
   return *this;
 }
