RE: Reg MYSQL and JAVA
still OT, but here goes anyway... you can in fact use PHP or ASP or whatever to generate PDFs. See http://www.pdflib.com/pdflib/index.html > -Original Message- > From: va ku [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 08, 2002 5:04 PM > To: Christopher Thompson; [EMAIL PROTECTED] > Subject: Re: Reg MYSQL and JAVA > > > Hi, > Thanks for the reply. I also need few 'doc' features such as > 1. Bold letters > 2. Formatted paragraphs > > The document I want to take a report is a student declaration form > where on top it will display student details in the middle > the declaration and at the end Signature. The document > consists of predefined declaration with bold and italics, Big > text size etc > > Any help is appreciated ? > > Regards > -- > > On Mon, 8 Apr 2002 11:55:23 > Christopher Thompson wrote: > >On Monday 08 April 2002 11:22 am, va ku wrote: > >> I don't know is this is the correct form. > > > >Not really. > > > >> I am looking for some help in developing report on Java. I am using > >> MYSQL and Java for development. > >> I need to generate a formatted output which contains values from > >> database, some paragraphs etc. I am expecting a report in > 'doc' or 'rtf' > >> or 'pdf' format. Can you suggest any free software for > this purpose. > > > >You will basically not be able to create any output in doc > format, partly > >because it isn't a standard and partly because it isn't open. > > > >That said, you could easily use Java and MySQL to query a > database and > >present the output in some format, such as comma-delimited. > You wouldn't > >need anything other than Java and MySQL to do this. > > > > > See Dave Matthews Band live or win a signed guitar > http://r.lycos.com/r/bmgfly_mail_dmb/http://win.ipromotions.co m/lycos_020201/splash.asp - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: Reg MYSQL and JAVA
Hi, Thanks for the reply. I also need few 'doc' features such as 1. Bold letters 2. Formatted paragraphs The document I want to take a report is a student declaration form where on top it will display student details in the middle the declaration and at the end Signature. The document consists of predefined declaration with bold and italics, Big text size etc Any help is appreciated ? Regards -- On Mon, 8 Apr 2002 11:55:23 Christopher Thompson wrote: >On Monday 08 April 2002 11:22 am, va ku wrote: >> I don't know is this is the correct form. > >Not really. > >> I am looking for some help in developing report on Java. I am using >> MYSQL and Java for development. >> I need to generate a formatted output which contains values from >> database, some paragraphs etc. I am expecting a report in 'doc' or 'rtf' >> or 'pdf' format. Can you suggest any free software for this purpose. > >You will basically not be able to create any output in doc format, partly >because it isn't a standard and partly because it isn't open. > >That said, you could easily use Java and MySQL to query a database and >present the output in some format, such as comma-delimited. You wouldn't >need anything other than Java and MySQL to do this. > See Dave Matthews Band live or win a signed guitar http://r.lycos.com/r/bmgfly_mail_dmb/http://win.ipromotions.com/lycos_020201/splash.asp - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
RE: mysql and java
this is actually OT, btw, but I'll try to answer... > need to make it smaller. Is it possible to somehow store > these descriptions > in a mysql table or on another page and then have them linked > to when you > put your mouse over the link? No. There are methods of accessing databases from the client-side in a browser, such as MS's RDS, but that's beyond the scope of this mailing list. It's actually beyond the scope of server-side programming in general, as what you are interested in is a client-side problem. Perhaps XML and XSLT might better help you solve your problem, but again, that's beyond the scope of this list... I'd be happy to help you work thru this problem if you want to contact me off-list... greg - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
mysql and java
Hey Guys, I'm not sure if this is the right place to ask this question, but to be honest I didn't know where else to turn since my script deals with mysql. Here's my problem: I am using stylesheets and javascript to display a small blurb about a review on my site and it display is in a stylesheet which is only visible when the mouse is over the link. The page is here for a reference: http://www.hardware-unlimited.com/hardware.php (The [Description] link is where im using java script) Here's my ordeal, this mysql script generates syntax that is hidden from the viewer until they put their mouse over a review for a description, however it has to store this lil bit of syntax 90 times (beacuse I have 90 reviews listed on the page) and it starts to add up, my page is already 132K and I need to make it smaller. Is it possible to somehow store these descriptions in a mysql table or on another page and then have them linked to when you put your mouse over the link? Syntax for descriptions is here: Description for %s:%s",$num["name"],$num ["name"],$num["info"]); } ?> Syntax for links, displaying the descriptions is here: Hardware Reviews - %s Articles Total", $info["0"]); } while($a=mysql_fetch_array($r)) { printf ("- %s (Written by: mailto:%s\";>%s) - [Description]",$a["url"],$a["name"],$a["ema il"],$a["author"],$a["url"],$a["name"],$a["name"]); } ?> I need to somehow have the "='if (window.event || document.layers) show(\"%s\",event)' onMouseOut='hide(\"%s\")'" syntax pull its data from a mysql table or another page, how can I do this? Thanks! -Alex "Big Al" Behrens E-mail: [EMAIL PROTECTED] Urgent E-mail: [EMAIL PROTECTED] (Please be brief!) Phone: 651-482-8779 Cell: 651-329-4187 Fax: 651-482-1391 ICQ: 3969599 Owner of the 3D-Unlimited Network: http://www.3d-unlimited.com Send News: [EMAIL PROTECTED] - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Reg MYSQL and JAVA
Hi, I don't know is this is the correct form. I am looking for some help in developing report on Java. I am using MYSQL and Java for development. I need to generate a formatted output which contains values from database, some paragraphs etc. I am expecting a report in 'doc' or 'rtf' or 'pdf' format. Can you suggest any free software for this purpose. Regards See Dave Matthews Band live or win a signed guitar http://r.lycos.com/r/bmgfly_mail_dmb/http://win.ipromotions.com/lycos_020201/splash.asp - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
Re: mysql and java
Hello, You'd probably want JDBC. http://www.mysql.com/downloads/api-jdbc.html Steve On Tue, Feb 19, 2002 at 03:17:49PM +, Bill Fogarty wrote: > Hi, > > Does anyoone know how to connect to mysql from a Java application in windows 2k? > Any help would be greatly apppreciated. I may be writing to the wrong list, anyone >got any suggestions of where i could get help with this online. > > Cheers, > Bill - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
mysql and java
Hi, Does anyoone know how to connect to mysql from a Java application in windows 2k? Any help would be greatly apppreciated. I may be writing to the wrong list, anyone got any suggestions of where i could get help with this online. Cheers, Bill
MySQL and Java on HP-UX
Hi, It is my first time using MySQL on Unix system, and my first time sending email to the mailing list. If the question I am asking has been asked before - I am sorry, I have just subscribed to MySQL mailing list. ;-) Here is my question. I have MySQL Server successfully installed on HP-UX 11i. Now, I wrote Java application that must be able to accesss MySQL DB and retrieve, store, update data in some tables. I've done some ODBC:JDBC JAVA programming on WIN platform, but never on UNIX OS. Could you please tell me, how can I access MySQL DB from Java application on Unix OS? Basically, what driver to use, what would the URL to the driver look like, where can I get HP-UX driver? Thanks a lot, Leon __ Do You Yahoo!? Get email at your own domain with Yahoo! Mail. http://personal.mail.yahoo.com/ - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php