You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(10) |
Oct
(54) |
Nov
(34) |
Dec
(45) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(49) |
Feb
(17) |
Mar
(13) |
Apr
|
May
(30) |
Jun
(13) |
Jul
(18) |
Aug
(23) |
Sep
(8) |
Oct
(10) |
Nov
(15) |
Dec
(24) |
2005 |
Jan
(16) |
Feb
(33) |
Mar
(58) |
Apr
(61) |
May
(37) |
Jun
(6) |
Jul
(30) |
Aug
(31) |
Sep
(12) |
Oct
(18) |
Nov
(8) |
Dec
(8) |
2006 |
Jan
(30) |
Feb
(4) |
Mar
(5) |
Apr
(4) |
May
(2) |
Jun
(6) |
Jul
(11) |
Aug
(21) |
Sep
(12) |
Oct
(9) |
Nov
(1) |
Dec
(15) |
2007 |
Jan
(4) |
Feb
(6) |
Mar
(7) |
Apr
(1) |
May
(2) |
Jun
(7) |
Jul
(4) |
Aug
(4) |
Sep
(6) |
Oct
|
Nov
|
Dec
(3) |
2008 |
Jan
(1) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(3) |
Dec
|
2010 |
Jan
(5) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
(1) |
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Al A. <aa...@ge...> - 2005-03-30 21:32:25
|
Got it! Sorry about that. Next message is a legit post. -----Original Message----- From: Al Arzaga Sent: Wednesday, March 30, 2005 3:33 PM To: RLIB USERS Subject: [Rlib-users] Testing Testing... Sent a post this morning, but it doesn't appear to have distributed through the list. Please reply directly if you do get this. Thanks, -Al ------------------------------------------------------- This SF.net email is sponsored by Demarc: A global provider of Threat Management Solutions. Download our HomeAdmin security software for free today! http://www.demarc.com/info/Sentarus/hamr30 _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Al A. <aa...@ge...> - 2005-03-30 21:25:56
|
Testing... Sent a post this morning, but it doesn't appear to have distributed through the list. Please reply directly if you do get this. Thanks, -Al |
From: Al A. <aa...@ge...> - 2005-03-30 15:12:40
|
Hello, I'm having trouble grasping how to implement report variables, break headers, and output them in xml. Consider I have the following output: <Detail> /.../ <FieldDetails> <Output> <Line bgcolor="iif(r.detailcnt%2,'0xe5e5e5','white')"> <field value="r.field1" width="10" align="left" col="1"/> <literal width="1"/> <field value="r.field2" width="10" align="center" col="2"/> <literal width="1"/> <field value="val(r.field3)" format="'$%.2d'" width="35" align="left" col="3"/> </Line> <HorizontalLine size="4" bgcolor="'white'"/> </Output> </FieldDetails> </Detail> And I want r.field3 to be summed up and have a subtotal displayed at the end of this output. First, where do I put the following line to calculate the subtotal? <Variable name="r.subtotal" value="r.total_fees" type="sum" /> Do I place it between the <FieldDetails> tags? And then, where and how can I display the actual subtotal? The syntax would be very much like this, right? I'd like it to align with the column 3 referenced between the Detail tags. <field value="r.subtotal" width="10" align="right" col="3"/> -Al |
From: Bob D. <bd...@si...> - 2005-03-30 01:10:55
|
Use the "+" sign. field1 + field2 Or: field1 + ' ' + field2 or whatever On Tue, 2005-03-29 at 19:12 -0600, Al Arzaga wrote: > Short of doing it on the query side, is there a way to concatenate fields > together on the xml side? > > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-03-30 01:10:03
|
ok.. On Tue, 2005-03-29 at 19:11 -0600, Al Arzaga wrote: > Will need to address this issue at another time. We came upon some issues > not related to rlib that is keeping us from trying to replicate the problem. > > > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Wednesday, March 23, 2005 2:18 PM > To: Al Arzaga > Cc: 'rli...@li...' > Subject: RE: [Rlib-users] rlib_add_datasource_odbc arguments in 1.3.1 > > > Hym... A race condition there would be news to me. Are we sure thats > what it is? If we put a sleep in there after the query is executed does > it help? I thought ODBC thread safe... > > - bob > > On Wed, 2005-03-23 at 12:51 -0600, Al Arzaga wrote: > > But will this address the problem with making rlib-odbc calls to a mysql > > database? This particular issue seems like a race condition, where the > > mechanism to print the data is unable to grab the first three rows of the > > result set. But since it knows how many rows to output, the final three > > rows of the result set are merely copies of the final row. > > > > > > > > -----Original Message----- > > From: Bob Doan [mailto:bd...@si...] > > Sent: Wednesday, March 23, 2005 9:10 AM > > To: Derek Giromini > > Cc: 'rli...@li...' > > Subject: RE: [Rlib-users] rlib_add_datasource_odbc arguments in 1.3.1 > > > > > > Derek, > > > > I think I know whats going on, someone reported this before but > > disappeared while in the middle of debugging the problem. > > > > Oracle does not implement SQLRowCount. I think I can write the ODBC > > connector w/ out this or perhaps you want to give it a shot > > (rlib/inputs/odbc/odbc.c) > > > > How's your c? > > > > - bob > > > > On Tue, 2005-03-22 at 15:29 -0600, Derek Giromini wrote: > > > Bob-- > > > > > > Thanks for the tip on the function. Unfortunately, there is a disconnect > > > between the function signatures in the documentation and in the example > > code > > > provided in the package. > > > > > > > What's a DSN? > > > > > > Data Source Name. > > > > > > > And what database are you going to use. They all don't implement ODBC > > the > > > same > > > > > > The project will join data in a local mysql database with a remote > Oracle > > > database via EasySoft ODBC-ODBC Bridge. > > > > > > As of this writing, I can generate HTML and PDF files based on a query > > that > > > is looking for data in a column through the ODBC connection, but the > files > > > are only generating one row's worth of data when I should see around 250 > > > rows. Has anyone else experienced this problem? Running code that uses > the > > > Bridge API directly yields all of the rows while RLIB only gives me one. > > > > > > > > > > > > I've also seen behavior where a connection to mysql ODBC using the > > ODBC-ODBC > > > Bridge yields more usable data, but the first three rows are gone while > > the > > > last four rows repeat the same data. Is there a race condition in both > of > > > these instances? > > > > > > Cheers, > > > --Derek > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: 2005 Windows Mobile Application > Contest > > > Submit applications for Windows Mobile(tm)-based Pocket PCs or > Smartphones > > > for the chance to win $25,000 and application distribution. Enter today > at > > > http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click > > > _______________________________________________ > > > Rlib-users mailing list > > > Rli...@li... > > > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Al A. <aa...@ge...> - 2005-03-30 01:04:24
|
Short of doing it on the query side, is there a way to concatenate fields together on the xml side? |
From: Bob D. <bd...@si...> - 2005-03-24 20:54:32
|
If you define a global variable in php like: $test = 5; You can access it rlib using "m." So in this case it's "m.test" - bob On Thu, 2005-03-24 at 11:59 -0700, Carol Fouse wrote: > (I am trying to download all the stuff that I need to do a make on the > rlib manual.) > > In your fixed_part.php example, you have a variable, $sillypants, that > is set to the value of 5, but it is not passed to the rlib program. I > don't see anything in any of the examples for passing just a variable > like this, without it being in an array. Is there a way? > -- Bob Doan <bd...@si...> |
From: Bob D. <bd...@si...> - 2005-03-23 20:17:52
|
Hym... A race condition there would be news to me. Are we sure thats what it is? If we put a sleep in there after the query is executed does it help? I thought ODBC thread safe... - bob On Wed, 2005-03-23 at 12:51 -0600, Al Arzaga wrote: > But will this address the problem with making rlib-odbc calls to a mysql > database? This particular issue seems like a race condition, where the > mechanism to print the data is unable to grab the first three rows of the > result set. But since it knows how many rows to output, the final three > rows of the result set are merely copies of the final row. > > > > -----Original Message----- > From: Bob Doan [mailto:bd...@si...] > Sent: Wednesday, March 23, 2005 9:10 AM > To: Derek Giromini > Cc: 'rli...@li...' > Subject: RE: [Rlib-users] rlib_add_datasource_odbc arguments in 1.3.1 > > > Derek, > > I think I know whats going on, someone reported this before but > disappeared while in the middle of debugging the problem. > > Oracle does not implement SQLRowCount. I think I can write the ODBC > connector w/ out this or perhaps you want to give it a shot > (rlib/inputs/odbc/odbc.c) > > How's your c? > > - bob > > On Tue, 2005-03-22 at 15:29 -0600, Derek Giromini wrote: > > Bob-- > > > > Thanks for the tip on the function. Unfortunately, there is a disconnect > > between the function signatures in the documentation and in the example > code > > provided in the package. > > > > > What's a DSN? > > > > Data Source Name. > > > > > And what database are you going to use. They all don't implement ODBC > the > > same > > > > The project will join data in a local mysql database with a remote Oracle > > database via EasySoft ODBC-ODBC Bridge. > > > > As of this writing, I can generate HTML and PDF files based on a query > that > > is looking for data in a column through the ODBC connection, but the files > > are only generating one row's worth of data when I should see around 250 > > rows. Has anyone else experienced this problem? Running code that uses the > > Bridge API directly yields all of the rows while RLIB only gives me one. > > > > > > > I've also seen behavior where a connection to mysql ODBC using the > ODBC-ODBC > > Bridge yields more usable data, but the first three rows are gone while > the > > last four rows repeat the same data. Is there a race condition in both of > > these instances? > > > > Cheers, > > --Derek > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: 2005 Windows Mobile Application Contest > > Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones > > for the chance to win $25,000 and application distribution. Enter today at > > http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click > > _______________________________________________ > > Rlib-users mailing list > > Rli...@li... > > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Al A. <aa...@ge...> - 2005-03-23 18:43:58
|
But will this address the problem with making rlib-odbc calls to a mysql database? This particular issue seems like a race condition, where the mechanism to print the data is unable to grab the first three rows of the result set. But since it knows how many rows to output, the final three rows of the result set are merely copies of the final row. -----Original Message----- From: Bob Doan [mailto:bd...@si...] Sent: Wednesday, March 23, 2005 9:10 AM To: Derek Giromini Cc: 'rli...@li...' Subject: RE: [Rlib-users] rlib_add_datasource_odbc arguments in 1.3.1 Derek, I think I know whats going on, someone reported this before but disappeared while in the middle of debugging the problem. Oracle does not implement SQLRowCount. I think I can write the ODBC connector w/ out this or perhaps you want to give it a shot (rlib/inputs/odbc/odbc.c) How's your c? - bob On Tue, 2005-03-22 at 15:29 -0600, Derek Giromini wrote: > Bob-- > > Thanks for the tip on the function. Unfortunately, there is a disconnect > between the function signatures in the documentation and in the example code > provided in the package. > > > What's a DSN? > > Data Source Name. > > > And what database are you going to use. They all don't implement ODBC the > same > > The project will join data in a local mysql database with a remote Oracle > database via EasySoft ODBC-ODBC Bridge. > > As of this writing, I can generate HTML and PDF files based on a query that > is looking for data in a column through the ODBC connection, but the files > are only generating one row's worth of data when I should see around 250 > rows. Has anyone else experienced this problem? Running code that uses the > Bridge API directly yields all of the rows while RLIB only gives me one. > > I've also seen behavior where a connection to mysql ODBC using the ODBC-ODBC > Bridge yields more usable data, but the first three rows are gone while the > last four rows repeat the same data. Is there a race condition in both of > these instances? > > Cheers, > --Derek > > > ------------------------------------------------------- > This SF.net email is sponsored by: 2005 Windows Mobile Application Contest > Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones > for the chance to win $25,000 and application distribution. Enter today at > http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> ------------------------------------------------------- This SF.net email is sponsored by: 2005 Windows Mobile Application Contest Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones for the chance to win $25,000 and application distribution. Enter today at http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Bob D. <bd...@si...> - 2005-03-23 17:19:18
|
Derek > I have one more query. PHP in 1.3.1 has access to rlib_add_datasource_array, > which allows locally stored data to be used in a report, but C in the same > version does not. Is this function available in 1.3.2 API? 1st No one has wanted it yet 2nd It's a little trickier to implement in a generic way because in c you don't know the bounds of the array. 3rd It's easy to implement a input custom provider. You need to implement these methods: (rlib_input.h) typedef struct input_filter input_filter; struct input_filter { gpointer private; struct input_info info; gint (*input_close)(gpointer); gpointer (*new_result_from_query)(gpointer, gchar *); gint (*free)(gpointer); gint (*first)(gpointer, gpointer); gint (*next)(gpointer, gpointer); gint (*previous)(gpointer, gpointer); gint (*last)(gpointer, gpointer); gint (*isdone)(gpointer, gpointer); const gchar * (*get_error)(gpointer); gchar * (*get_field_value_as_string)(gpointer, gpointer, gpointer); gpointer (*resolve_field_pointer)(gpointer, gpointer, gchar *); void (*free_result)(gpointer, gpointer); gint (*set_encoding)(gpointer); }; See MySQL, ODBC, PostgreeSQL as example. Other people have posted to the list input providers (someone did a XML but didn't sign the copyright :( ) Then you call rlib_add_datasource(r, "SOME_NAME", input); And away you go. - bob > > Cheers, > --Derek > > > ------------------------------------------------------- > This SF.net email is sponsored by Microsoft Mobile & Embedded DevCon 2005 > Attend MEDC 2005 May 9-12 in Vegas. Learn more about the latest Windows > Embedded(r) & Windows Mobile(tm) platforms, applications & content. Register > by 3/29 & save $300 http://ads.osdn.com/?ad_id=6883&alloc_id=15149&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Derek G. <dgi...@ge...> - 2005-03-23 17:00:03
|
Bob-- > Oracle does not implement SQLRowCount. I think I can write > the ODBC connector w/ out this or perhaps you want to give > it a shot (rlib/inputs/odbc/odbc.c) > How's your c? I can modify this and test it, but I don't know how much this will dig into other aspects of my project. (Perhaps this aligns perfectly with my project.) I have one more query. PHP in 1.3.1 has access to rlib_add_datasource_array, which allows locally stored data to be used in a report, but C in the same version does not. Is this function available in 1.3.2 API? Cheers, --Derek |
From: Bob D. <bd...@si...> - 2005-03-23 15:10:36
|
Derek, I think I know whats going on, someone reported this before but disappeared while in the middle of debugging the problem. Oracle does not implement SQLRowCount. I think I can write the ODBC connector w/ out this or perhaps you want to give it a shot (rlib/inputs/odbc/odbc.c) How's your c? - bob On Tue, 2005-03-22 at 15:29 -0600, Derek Giromini wrote: > Bob-- > > Thanks for the tip on the function. Unfortunately, there is a disconnect > between the function signatures in the documentation and in the example code > provided in the package. > > > What's a DSN? > > Data Source Name. > > > And what database are you going to use. They all don't implement ODBC the > same > > The project will join data in a local mysql database with a remote Oracle > database via EasySoft ODBC-ODBC Bridge. > > As of this writing, I can generate HTML and PDF files based on a query that > is looking for data in a column through the ODBC connection, but the files > are only generating one row's worth of data when I should see around 250 > rows. Has anyone else experienced this problem? Running code that uses the > Bridge API directly yields all of the rows while RLIB only gives me one. > > I've also seen behavior where a connection to mysql ODBC using the ODBC-ODBC > Bridge yields more usable data, but the first three rows are gone while the > last four rows repeat the same data. Is there a race condition in both of > these instances? > > Cheers, > --Derek > > > ------------------------------------------------------- > This SF.net email is sponsored by: 2005 Windows Mobile Application Contest > Submit applications for Windows Mobile(tm)-based Pocket PCs or Smartphones > for the chance to win $25,000 and application distribution. Enter today at > http://ads.osdn.com/?ad_id=6882&alloc_id=15148&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Derek G. <dgi...@ge...> - 2005-03-22 21:21:42
|
Bob-- Thanks for the tip on the function. Unfortunately, there is a disconnect between the function signatures in the documentation and in the example code provided in the package. > What's a DSN? Data Source Name. > And what database are you going to use. They all don't implement ODBC the same The project will join data in a local mysql database with a remote Oracle database via EasySoft ODBC-ODBC Bridge. As of this writing, I can generate HTML and PDF files based on a query that is looking for data in a column through the ODBC connection, but the files are only generating one row's worth of data when I should see around 250 rows. Has anyone else experienced this problem? Running code that uses the Bridge API directly yields all of the rows while RLIB only gives me one. I've also seen behavior where a connection to mysql ODBC using the ODBC-ODBC Bridge yields more usable data, but the first three rows are gone while the last four rows repeat the same data. Is there a race condition in both of these instances? Cheers, --Derek |
From: Bob D. <bd...@si...> - 2005-03-22 01:23:01
|
The input name is used later when you add queries to RLIB. RLIB can use multiple datasources at a time(mysql, odbc, postgresql, ect) Or multiple of the same.. say a mysql db on server X and a mysqldb on server Y rlib_add_query_as(INPUT NAME (from the datasource), query string, query name); What's a DSN? And what database are you going to use. They all don't implement ODBC the same - bob On Mon, 2005-03-21 at 17:34 -0600, Derek Giromini wrote: > All-- > > The documentation says nothing about the new parameter input_name added to > rlib_add_datasource_odbc in version 1.3.1. Could someone in the know please > enlighten me as to what I should do with the new parameter? Also, how could > I leverage this function call against an ODBC library that uses a > configuration file to get the complete information about a DSN? > > I am using RLIB 1.3.1 on a FreeBSD host that has been configured with > EasySoft's ODBC-ODBC Bridge (OOB) ODBC library. I would prefer if I can > bypass the OOB API altogether and use only the RLIB API in my code. > > Cheers, > --Derek > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users -- Bob Doan <bd...@si...> |
From: Derek G. <dgi...@ge...> - 2005-03-21 23:27:09
|
All-- The documentation says nothing about the new parameter input_name added to rlib_add_datasource_odbc in version 1.3.1. Could someone in the know please enlighten me as to what I should do with the new parameter? Also, how could I leverage this function call against an ODBC library that uses a configuration file to get the complete information about a DSN? I am using RLIB 1.3.1 on a FreeBSD host that has been configured with EasySoft's ODBC-ODBC Bridge (OOB) ODBC library. I would prefer if I can bypass the OOB API altogether and use only the RLIB API in my code. Cheers, --Derek |
From: Derek G. <dgi...@ge...> - 2005-03-21 23:26:35
|
Please disregard this query. I will post a more pressing query in a few moments. -----Original Message----- From: Derek Giromini Sent: Monday, March 21, 2005 4:23 PM To: 'rli...@li...' Subject: RE: [Rlib-users] External ResultSet into RLIB We will try to recompile RLIB 1.3.1 against the OOB ODBC library. This would be the optimal solution as it would reduce the amount of code necessary, because RLIB is cute like that. -----Original Message----- From: Derek Giromini Sent: Monday, March 21, 2005 4:19 PM To: 'rli...@li...' Subject: [Rlib-users] External ResultSet into RLIB All-- I am testing RLIB 1.3.1 and EasySoft's ODBC-ODBC Bridge (OOB) on a FreeBSD host. My goal is to take a ResultSet from the OOB API and plug that into RLIB -- effectively bypassing RLIB's API for getting a ResultSet via ODBC. Is this possible? Cheers, --Derek ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Derek G. <dgi...@ge...> - 2005-03-21 22:15:42
|
We will try to recompile RLIB 1.3.1 against the OOB ODBC library. This would be the optimal solution as it would reduce the amount of code necessary, because RLIB is cute like that. -----Original Message----- From: Derek Giromini Sent: Monday, March 21, 2005 4:19 PM To: 'rli...@li...' Subject: [Rlib-users] External ResultSet into RLIB All-- I am testing RLIB 1.3.1 and EasySoft's ODBC-ODBC Bridge (OOB) on a FreeBSD host. My goal is to take a ResultSet from the OOB API and plug that into RLIB -- effectively bypassing RLIB's API for getting a ResultSet via ODBC. Is this possible? Cheers, --Derek ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Rlib-users mailing list Rli...@li... https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Derek G. <dgi...@ge...> - 2005-03-21 22:11:01
|
All-- I am testing RLIB 1.3.1 and EasySoft's ODBC-ODBC Bridge (OOB) on a FreeBSD host. My goal is to take a ResultSet from the OOB API and plug that into RLIB -- effectively bypassing RLIB's API for getting a ResultSet via ODBC. Is this possible? Cheers, --Derek |
From: Bob D. <bd...@si...> - 2005-03-15 20:29:27
|
Will do and will do - bob On Tue, 2005-03-15 at 15:19 -0500, Shannon Weyrick wrote: > Bob Doan wrote: > > >Shannon, > > > >It seems the documentation is not correct and the link feature on text > >is not implemented. > > > >If you wanted to make it work you would have to hit: > >rlib.h > >parsexml.c > >resolution.c > >free.c > >layout.c > > > >Or just as me to do it.. (it's only a 5 minute job) > > > >- bob > > > > > Hey Bob, > > Ok, could you do it please? :) On a related note, currently the link > attribute for Field puts the entire width of the field content into the > <a href> -- including the spacers that fill out the width if the text > isn't long enough. This ends up looking pretty bad in html. Ideally the > <a href> would only wrap the text, and then the spaces would be tacked > on after that. Any possibility of that fix getting squeezed in as well? > > Thanks, > Shannon > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Shannon W. <we...@ro...> - 2005-03-15 20:19:32
|
Bob Doan wrote: >Shannon, > >It seems the documentation is not correct and the link feature on text >is not implemented. > >If you wanted to make it work you would have to hit: >rlib.h >parsexml.c >resolution.c >free.c >layout.c > >Or just as me to do it.. (it's only a 5 minute job) > >- bob > > Hey Bob, Ok, could you do it please? :) On a related note, currently the link attribute for Field puts the entire width of the field content into the <a href> -- including the spacers that fill out the width if the text isn't long enough. This ends up looking pretty bad in html. Ideally the <a href> would only wrap the text, and then the spaces would be tacked on after that. Any possibility of that fix getting squeezed in as well? Thanks, Shannon |
From: Bob D. <bd...@si...> - 2005-03-15 19:40:36
|
Shannon, It seems the documentation is not correct and the link feature on text is not implemented. If you wanted to make it work you would have to hit: rlib.h parsexml.c resolution.c free.c layout.c Or just as me to do it.. (it's only a 5 minute job) - bob On Tue, 2005-03-15 at 13:29 -0500, Shannon Weyrick wrote: > The current docs mention the 'link' attribute for the Literals (and > Field) element, which should make the content a URL link. This doesn't > appear to be working for Literals (it's ignored). I've only seen the > link attribute in the Field element in the examples -- and it appears to > work properly there. > > I haven't dug into the code on this yet - is this an error in the docs, > or am I doing something wrong? I'd volunteer to add it if it's on the > TODO. Since it's working for the Field tag, I'd imagine it's not too > hard to add (hopefully). > > Thanks, > Shannon > > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > Rlib-users mailing list > Rli...@li... > https://lists.sourceforge.net/lists/listinfo/rlib-users |
From: Shannon W. <we...@ro...> - 2005-03-15 18:29:17
|
The current docs mention the 'link' attribute for the Literals (and Field) element, which should make the content a URL link. This doesn't appear to be working for Literals (it's ignored). I've only seen the link attribute in the Field element in the examples -- and it appears to work properly there. I haven't dug into the code on this yet - is this an error in the docs, or am I doing something wrong? I'd volunteer to add it if it's on the TODO. Since it's working for the Field tag, I'd imagine it's not too hard to add (hopefully). Thanks, Shannon |
From: markpa <ma...@us...> - 2005-03-13 02:22:20
|
Bob, yes its Windows that I'm working with, though I'm sure the BSD sites would be equally happy to be able to make use of rlib. Bob Doan wrote: >Mark, > >I have been working on a windows port. I'm down to a few problems such >as strfmon. > >What other OS's are you targeting? > >Keep in mind rlib wraps a lot of stuff w/ glib calls to make it >portable. > >- bob > >On Sat, 2005-03-12 at 14:50 +1100, Mark Parssey wrote: > > >>Bob, et al >> >>I contribute to an open source php project (phpaga which is a web-based >>project/task tracking and invoice management solution) and am looking at >>approp. tool to improve the flexibility of the report generation, csv >>creation etc.. >> >>rlib looks like an ecellent tool for that purpose. >> >>But phpaga is OS independent while rlib is POSIX. >> >>Is there any thought that you may be able to port rlib to that other OS. >> >>I can here you say why would anyone want to be running on that but >>sometimes we're stuck with our history. >> >>Mark >> >> >> >>------------------------------------------------------- >>SF email is sponsored by - The IT Product Guide >>Read honest & candid reviews on hundreds of IT Products from real users. >>Discover which products truly live up to the hype. Start reading now. >>http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click >>_______________________________________________ >>Rlib-users mailing list >>Rli...@li... >>https://lists.sourceforge.net/lists/listinfo/rlib-users >> >> |
From: Bob D. <bd...@si...> - 2005-03-12 14:00:51
|
Hi, Check apache error log Also try to run it from the command line: php test.php If there is a problem you will get useful information On Sat, 2005-03-12 at 19:28 +0530, Vishal Kashyap @ [SaiHertz] wrote: > Hi all , > > > I get an blank page for every PHP report I am creating. The XML is > parsing fine (checked by mozilla) > > More Info: > PHP 4.3.7 > PostgreSQL 7.4.3 > Apache 1.3.x > Rlib 1.3.x > Browser : Mozilla , Firefox -- Bob Doan <bd...@si...> |
From: Vishal K. @ [SaiHertz] <vis...@gm...> - 2005-03-12 13:58:21
|
Hi all , I get an blank page for every PHP report I am creating. The XML is parsing fine (checked by mozilla) More Info: PHP 4.3.7 PostgreSQL 7.4.3 Apache 1.3.x Rlib 1.3.x Browser : Mozilla , Firefox -- With Best Regards, Vishal Kashyap. Lead Software Developer, http://saihertz.com, http://vishalkashyap.tk |