* Fixed wan connection profile issue reported by CarlosRuiz
This commit is contained in:
parent
8a0091735b
commit
6685c9e75c
|
@ -127,7 +127,7 @@ public class ServerBean implements SessionBean
|
||||||
log.finer("[" + m_no + "]");
|
log.finer("[" + m_no + "]");
|
||||||
m_stmt_rowSetCount++;
|
m_stmt_rowSetCount++;
|
||||||
CPreparedStatement pstmt = new CPreparedStatement(info);
|
CPreparedStatement pstmt = new CPreparedStatement(info);
|
||||||
return pstmt.remote_getRowSet();
|
return pstmt.getRowSet();
|
||||||
} // pstmt_getRowSet
|
} // pstmt_getRowSet
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -142,7 +142,7 @@ public class ServerBean implements SessionBean
|
||||||
log.finer("[" + m_no + "]");
|
log.finer("[" + m_no + "]");
|
||||||
m_stmt_rowSetCount++;
|
m_stmt_rowSetCount++;
|
||||||
CStatement stmt = new CStatement(info);
|
CStatement stmt = new CStatement(info);
|
||||||
return stmt.remote_getRowSet();
|
return stmt.getRowSet();
|
||||||
} // stmt_getRowSet
|
} // stmt_getRowSet
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue