Example #1
0
        /// <summary>
        /// Executes the SQL query in this <see cref="PreparedStatement"/> object and returns the <see cref="ResultSet"/> object generated by the query.
        /// </summary>
        /// <returns></returns>
        public ResultSet ExecuteQuery()
        {
            Object rs        = _statement.ExecuteQuery();
            var    resultSet = new ResultSet(rs);

            return(resultSet);
        }