No. I have the data. I do not need to open a recordset and obtaion data
from a database. The data is coming form the dataset passed into the
procedure. I am creating a recordset from the data in the dataset. As part
of this process, I create a .xsl file which comtains both the schema and the
data. I need to open the recordset with this .xsl file. VB.NET is like this:
rs.Open("C"\Files\MyXslFile.xsl")
I want to do it in C# which is like this:
rs.Open("C:\files\xslfile.xsl", object ActiveConnection,
ADODB.CursorTypeEnum, ADODB.LockTypeEnum, int Options)
Since I do not need a connection, cursor type, lock type, or any options,
how is this accomplished?
"Jeff Gaines" wrote:
> On 30/12/2004 Robert wrote:
>
> > I agree if I were using Excel .xls files. This is a .xsl file which
> > is an ADO Recordset format for defining the schema.
> >
> > Robert
>
> Sorry, must have Excel on my mind :-)
>
> The example I gave included the extra parameters, did you try them?
>
> --
> Jeff Gaines
> Posted with XanaNews 1.17.1.2 http://www.wilsonc.demon.co.uk/delphi.htm
>