(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / Npgsql / Npgsql / NpgsqlResultSet.cs
blob3cc26b5563cbff884cae759e5d3374085ceafa4c
2 // Npgsql.NpgsqlResultSet.cs
3 //
4 // Author:
5 // Francisco Jr. (fxjrlists@yahoo.com.br)
6 //
7 // Copyright (C) 2002 The Npgsql Development Team
8 // npgsql-general@gborg.postgresql.org
9 // http://gborg.postgresql.org/project/npgsql/projdisplay.php
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Lesser General Public
13 // License as published by the Free Software Foundation; either
14 // version 2.1 of the License, or (at your option) any later version.
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 // Lesser General Public License for more details.
21 // You should have received a copy of the GNU Lesser General Public
22 // License along with this library; if not, write to the Free Software
23 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 using System;
26 using System.Data;
27 using System.Collections;
29 namespace Npgsql
31 internal sealed class NpgsqlResultSet
33 private NpgsqlRowDescription row_desc;
34 private ArrayList data;
37 public NpgsqlResultSet(NpgsqlRowDescription rowDesc, ArrayList data)
39 this.row_desc = rowDesc;
40 this.data = data;
43 public NpgsqlRowDescription RowDescription
45 get
47 return row_desc;
51 public Object this[Int32 index]
53 get
55 return data[index];
59 public Int32 Count
61 get
63 return data.Count;