Re: CFDocument PDF text duplication

2013-01-26 Thread Raghu raman
Hello CF-Talk, I've been a long-time reader of your mailing list and this is my first post :) I've been working with PDF generation (CF 8.0.1 / Windows Linux) and have gotten most of the known kinks fixed but there's still one problem that I can't get around: Sometimes when (bold?) text

Re: CFDocument PDF text duplication

2013-01-26 Thread Raghu raman
I am also able to reproduce the same issue. I did try to generate the PDF using cfpdf, cfcontent etc but that did not help. Using the wrap function and trying to generate the PDF directly from itext also failed. Was any one able to solve this issue ?

Getting Record Count

2013-01-26 Thread Rick Faircloth
If I'm running a query on a database and limit the records returned to 10, what's the best way to get the record count for the entire dataset if everything was return and not just the first 10 records? I can re-rerun the query without the 10-record limit, but that seems like a ridiculous

Re: Getting Record Count

2013-01-26 Thread Brian Thornton
Do a first quesrt using sql count On Jan 26, 2013 12:41 PM, Rick Faircloth r...@whitestonemedia.com wrote: If I'm running a query on a database and limit the records returned to 10, what's the best way to get the record count for the entire dataset if everything was return and not just the

Re: Getting Record Count

2013-01-26 Thread Gerald Guido
Something like this perhaps? SELECThelp_topic_id , (SELECT count(help_topic_id) FROM mysql.help_relation ) as IDCount,help_keyword_id FROM mysql.help_relation LIMIT 10; On Sat, Jan 26, 2013 at 12:41 PM, Rick Faircloth r...@whitestonemedia.comwrote: If I'm running a query on a database

RE: Getting Record Count

2013-01-26 Thread Rick Faircloth
That worked! Learn something new every day! Thanks, Gerald and Brian for the tips! Rick -Original Message- From: Gerald Guido [mailto:gerald.gu...@gmail.com] Sent: Saturday, January 26, 2013 5:45 PM To: cf-talk Subject: Re: Getting Record Count Something like this perhaps?