RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-17 Thread Jim Bullock
Funny you should mention it. We just started experimenting with XML yesterday. CR comes with an ODBC driver for XML files. UD's LISTTOXML seems to work as advertised. Many details remain to be investigated, but it looks promising so far. Jim --- John Jenkins [EMAIL PROTECTED] wrote: I

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-17 Thread Wendy Smoak
Jim Bullock wrote: Funny you should mention it. We just started experimenting with XML yesterday. CR comes with an ODBC driver for XML files. UD's LISTTOXML seems to work as advertised. Many details remain to be investigated, but it looks promising so far. If LIST...TOXML

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-16 Thread John Jenkins
I seem to remember there is a link into ADO for CR ... maybe you could link into RBOs? XML might be another possible methodology - but I don't have a copy of CR to play with... Anyone got any inside information on these features in CR? Regards JayJay We have racked our brains and have been

Re: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Don Kibbey
I've found the best way for me to do what you are describing is to use UniObjects .Net to create a recordset from the UniData/UniVerse machine and then pass that recordset into a Crystal Report. Probably not what you want to hear, but it is a method to stitch together your current programs with

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Alfke, Colin
Sorry, I haven't played much with our Crystal reports, but I think we had a similar problem. However, we didn't have the large library of paragraphs that we felt compelled to re-use. I didn't think it was all that slow. We did figure out how to do some neat things with Crystal though. What

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Jim Bullock
] On Behalf Of Jim Bullock Sent: Tuesday, 15 March 2005 9:55 AM To: u2-users@listserver.u2ug.org Subject: [U2] UD: ODBC/OleDB access to selected records in a file We are having quite a bit of success writing reports with Crystal Reports, using ODBC to access our UD6 database. We have gone through

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Jeff Schasny
To expand on Colins idea of a work file: What about creating a process which can be passed a list of column definitions (title,width,datatype, etc) and a set of report data thenand creates an ODBC enabled work file which could be accessed by crystal reports with a simple SELECT * FROM SQL

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Jim Bullock
Thank you both for the workfile suggestion. We have toyed a bit with this idea. One of the challenges we face is that we have 200 users who can run reports via the Web and the Crystal Enterprise reporting engine. Two simultaneous users couldn't use a single workfile simultaneously. We

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Aherne, John
If you really want to do selects on the fly, you might want to look into unibojects or uniobjects for java. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Schasny Sent: Tuesday, March 15, 2005 12:10 PM To: U2 Group Subject: RE: [U2] UD: ODBC/OleDB

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-15 Thread Alfke, Colin
There are a couple of ways around that: you can use a different file for each user or you can put some sort of identifier in the key for each user. We did find some neat functionality in Crystal that meant we could use multiple data files with one report. I forget what their terminology for it

[U2] UD: ODBC/OleDB access to selected records in a file

2005-03-14 Thread Jim Bullock
We are having quite a bit of success writing reports with Crystal Reports, using ODBC to access our UD6 database. We have gone through the exercise of flattening files, creating new dicts, etc. It's slow, but we are usually able to get what we need. We serve up the reports to the users with

Re: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-14 Thread Craig Bennett
in the ODBC/OleDB interface to UniData. Before we give up entirely and resign ourselves to putting out paper reports with UniQuery, I thought I would ask this group if anyone has solved this problem. Anyone? Don't do that Jim. I you have to use UniQuery, at least convert the text reports to

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-14 Thread David Jordan
driven formatting, scheduling and a number of other features. Regards David Jordan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett Sent: Tuesday, 15 March 2005 10:08 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] UD: ODBC/OleDB access

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-14 Thread Ross Ferris
Stamina Software Visage - an Evolution in Software Development -Original Message- From: [EMAIL PROTECTED] [mailto:owner-u2- [EMAIL PROTECTED] On Behalf Of Jim Bullock Sent: Tuesday, 15 March 2005 9:55 AM To: u2-users@listserver.u2ug.org Subject: [U2] UD: ODBC/OleDB access to selected records

RE: [U2] UD: ODBC/OleDB access to selected records in a file

2005-03-14 Thread Stuart . Boydell
Does UV SQL CALL syntax work for UD too? Can that be used to return the rows you need from basic or a paragraph? Stuart -Original Message- From: Jim Bullock The natural, or so I thought, place to do this sort of thing is in a stored procedure. I got as far as seeing the stored