Re: Brainstorming' time! (export to excel via java)

2004-08-26 Thread Shawn
As for programming skills, I'm pretty familiar with Java so I feel sure I could write a suitable utility with that. In fact, unless I had a really urgent need, I would prefer to write my own stuff just because I like writing code If you wanted to go the java route I suggest checking out

AW: Brainstorming' time!

2004-08-21 Thread Freddie Sorensen
Scott, ASP.NET would be just fine ! Freddie -Ursprüngliche Nachricht- Von: Scott Hamm [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 20. August 2004 20:40 An: 'Mysql ' (E-mail) Betreff: Brainstorming' time! Looks like I will need more than just MySQL and Php/ASP.net. I might

Re: Brainstorming' time!

2004-08-21 Thread mos
At 11:02 AM 8/20/2004, you wrote: Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file. Is there any another way you can export into file and make it readable? What format do you use? I'm open to ideas from experienced database programmers :)

Brainstorming' time!

2004-08-20 Thread Scott Hamm
Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file. Is there any another way you can export into file and make it readable? What format do you use? I'm open to ideas from experienced database programmers :) I'm upgrading the whole database

Re: Brainstorming' time!

2004-08-20 Thread Rhino
- Original Message - From: Scott Hamm [EMAIL PROTECTED] To: 'Mysql ' (E-mail) [EMAIL PROTECTED] Sent: Friday, August 20, 2004 12:02 PM Subject: Brainstorming' time! Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file

Re: Brainstorming' time!

2004-08-20 Thread Eamon Daly
] Sent: Friday, August 20, 2004 11:02 AM Subject: Brainstorming' time! Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file. Is there any another way you can export into file and make it readable? What format do you use? I'm open to ideas

RE: Brainstorming' time!

2004-08-20 Thread christopher . l . hood
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 20, 2004 11:30 AM To: Scott Hamm; 'Mysql ' (E-mail) Subject: Re: Brainstorming' time! - Original Message - From: Scott Hamm [EMAIL PROTECTED] To: 'Mysql ' (E-mail) [EMAIL PROTECTED] Sent: Friday

AW: Brainstorming' time!

2004-08-20 Thread Freddie Sorensen
-Ursprüngliche Nachricht- Von: Rhino [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 20. August 2004 18:30 An: Scott Hamm; 'Mysql ' (E-mail) Betreff: Re: Brainstorming' time! - Original Message - From: Scott Hamm [EMAIL PROTECTED] To: 'Mysql ' (E-mail) [EMAIL PROTECTED] Sent: Friday

Brainstorming' time!

2004-08-20 Thread Scott Hamm
Looks like I will need more than just MySQL and Php/ASP.net. I might even look into perl. What else should I be using? (IIS is provided for) I'm willing to learn new tricks. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: Brainstorming' time!

2004-08-20 Thread Rhino
- Original Message - From: Freddie Sorensen [EMAIL PROTECTED] To: 'Rhino' [EMAIL PROTECTED]; 'Scott Hamm' [EMAIL PROTECTED]; ''Mysql ' (E-mail)' [EMAIL PROTECTED] Sent: Friday, August 20, 2004 2:28 PM Subject: AW: Brainstorming' time! Rhino | Get the free DBTools DBManager Pro from

Re: Brainstorming' time!

2004-08-20 Thread James Weisensee
, August 20, 2004 11:02 AM Subject: Brainstorming' time! Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file. Is there any another way you can export into file and make it readable? What format do you use? I'm open to ideas from

Re: Brainstorming' time!

2004-08-20 Thread Eamon Daly
PROTECTED] Sent: Friday, August 20, 2004 1:24 PM Subject: RE: Brainstorming' time! Ok unless I missed something here, wouldn't you just use the SELECT ... INTO OUTFILE Syntax found here http://dev.mysql.com/doc/mysql/en/LOAD_DATA.html Just search for outfile and you can find it faster. You

Re: Brainstorming' time!

2004-08-20 Thread Dirk Bremer \(NISC\)
:55 Subject: Re: Brainstorming' time! 100 quatloos to Chris for the simplest answer. Do that. I'll add that you could also use mysqldump: mysqldump -T /tmp test users This would create /tmp/users.sql, containing the CREATE TABLE, and /tmp/users.txt, containing a tab-delimited file suitable

Brainstorming' time!

2004-08-20 Thread Scott Hamm
Wow, so much different ideas. I noted all ideas down to experiment with. I want to say that apologize for sounding newbie asking questions and all that. I know that no question is a stupid question, but you all have been a big help. MyODBC sounds like more reliable answer and will try that with

Re: Brainstorming' time!

2004-08-20 Thread Shankar Unni
Scott Hamm wrote: Ok. I'm looking into alternatives. I'm trying to figure out an alternative to mysql exporting into xls file. Gosh, what's wrong with CSV files? Surely Access can export a classic CSV file format with fields separated by commas and enclosed by ? Then you can just use LOAD