* Fixed wan connection profile issue reported by CarlosRuiz

This commit is contained in:
Heng Sin Low 2007-01-10 09:33:21 +00:00
parent 8a0091735b
commit 6685c9e75c
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ public class ServerBean implements SessionBean
log.finer("[" + m_no + "]");
m_stmt_rowSetCount++;
CPreparedStatement pstmt = new CPreparedStatement(info);
return pstmt.remote_getRowSet();
return pstmt.getRowSet();
} // pstmt_getRowSet
/**
@ -142,7 +142,7 @@ public class ServerBean implements SessionBean
log.finer("[" + m_no + "]");
m_stmt_rowSetCount++;
CStatement stmt = new CStatement(info);
return stmt.remote_getRowSet();
return stmt.getRowSet();
} // stmt_getRowSet
/**