dbTalk Databases Forums  

ParadoxFile to XML

comp.databases.paradox comp.databases.paradox


Discuss ParadoxFile to XML in the comp.databases.paradox forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Michael.Ruehling@t-online.de
 
Posts: n/a

Default ParadoxFile to XML - 06-30-2008 , 02:37 PM






Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.


M.

Reply With Quote
  #2  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM






On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #3  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #4  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #5  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #6  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #7  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #8  
Old   
Jim Hargan
 
Posts: n/a

Default Re: ParadoxFile to XML - 06-30-2008 , 05:10 PM



On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Quote:
Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.
I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com


Reply With Quote
  #9  
Old   
Michael.Ruehling@t-online.de
 
Posts: n/a

Default Re: ParadoxFile to XML - 07-01-2008 , 12:11 PM



On Mon, 30 Jun 2008 18:10:33 -0400, Jim Hargan
<contact (AT) harganonline (DOT) com> wrote:

Quote:
On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.

I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com
Hi,
this is what I want. But I want to do it automaticly (?) for all of
my tables without manual interference.
e.g.:

[PSEUDOCODE]:

openTable(char Name);
while (!EOF)
{
STRING Var = add(XML_VARIABLE_START, datum, XML_ELEMENT_END);
writeFile(openTextFile, Var);
}
closeTable();

So far it complies with your Thought, except for the tCursor to find
the data.

By the way: Is there any good book/resource for OPAL?

Thanx
M.


Reply With Quote
  #10  
Old   
Michael.Ruehling@t-online.de
 
Posts: n/a

Default Re: ParadoxFile to XML - 07-01-2008 , 12:11 PM



On Mon, 30 Jun 2008 18:10:33 -0400, Jim Hargan
<contact (AT) harganonline (DOT) com> wrote:

Quote:
On Mon, 30 Jun 2008 21:37:23 +0200, Michael.Ruehling (AT) t-online (DOT) de wrote:

Hi,
I am using Paradox 9. Thesedays I am trying to convert all of my
Lists into XML-Files to display them via XSL.
Has anybody tried to write an XML-Export-Filter -Function or
something like that in ObjectPal?
Anything is helpful.

I wrote an OPAL system that creates valid XHTML web pages from text content
stored in Pdox tables. This is XML, but probably not what you are looking
for. However the principle is simple:
- use tCursors to find the datum you want to write;
- store it in a string variable (all XML data are strings);
- add the XML tags to the start and end of the variable; and
- textStream it into the XML document.

I've been using it successfully for five years or so. I created my web site
with it, and I create lightboxes for clients with it several times a week.

HTH,

Jim Hargan
www.harganonline.com
Hi,
this is what I want. But I want to do it automaticly (?) for all of
my tables without manual interference.
e.g.:

[PSEUDOCODE]:

openTable(char Name);
while (!EOF)
{
STRING Var = add(XML_VARIABLE_START, datum, XML_ELEMENT_END);
writeFile(openTextFile, Var);
}
closeTable();

So far it complies with your Thought, except for the tCursor to find
the data.

By the way: Is there any good book/resource for OPAL?

Thanx
M.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.