Re: FileMaker Pro compared to MySQL

2004-04-05 Thread Brent Baisley
It's tough comparing databases that are not in the same class. MySQL is better than FileMaker (even v7) in lots of way, but then, Filemaker is better in some ways too. MySQL will be far more scalable than FileMaker. But you'll be more productive in FileMaker based on it's ease of use. At least

Re: FileMaker Pro compared to MySQL

2004-04-02 Thread Justin Tulloss
ss <[EMAIL PROTECTED]> > Subject: Re: FileMaker Pro compared to MySQL > > Do you work with FM as a sole client, is it a server-client FM setup or > is it connected to some web applications (using FM:s internal > webpublishing, cgi:s etc)? > > Speed depends on a number of f

RE: FileMaker Pro

2003-07-15 Thread Rob A. Brahier
format--the default is not a format that MySQL can translate. -Original Message- From: Warren Young [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 12:43 PM To: MySQL List Subject: Re: FileMaker Pro Steve Marquez wrote: > Does anyone know how to export a FileMaker Pro Database so

Re: FileMaker Pro

2003-07-14 Thread Mike . Kent
t; cc: Subject: Re: FileMaker Pro

Re: FileMaker Pro

2003-07-14 Thread Warren Young
Steve Marquez wrote: Does anyone know how to export a FileMaker Pro Database so that MySQL can use it? Anyone ever do something like this? If you want a one-time transfer, the simple and cheap way is through some sort of text file; CVS or tab-delimited, for example. If you want the two databases

Re: FileMaker Pro

2003-07-12 Thread David Shugarts
FM is no problem. You can output from it to a tab-delimited file and then INSERT it into a mySQL DB. Or, a number of mySQL clients, including myPHPAdmin, allow you to import a text file, such as a tabbed file (or CSV, etc.). You must first set up your mySQL datatbase and be sure that the field type

Re: FileMaker Pro Schema Export?

2002-10-01 Thread Clayburn W. Juniel, III
On Tuesday, October 1, 2002, at 10:25 24h, Jan Steinman wrote: >> From: "Chuck Payne" <[EMAIL PROTECTED]> >> >> Question are you want to take your data from Filemaker to Excel? > > No, I want to just go from FileMaker to MySQL, period. Forever. End of > story. If you export a FileMaker databa

RE: FileMaker Pro Schema Export?

2002-10-01 Thread Jan Steinman
>From: "Chuck Payne" <[EMAIL PROTECTED]> > >Question are you want to take your data from Filemaker to Excel? No, I want to just go from FileMaker to MySQL, period. Forever. End of story. I'm tired of paying "FileMaker Tax" every year. (The version upgrade went from $149 to $199 this year.) I'm

RE: FileMaker Pro Schema Export?

2002-09-30 Thread Chuck Payne
you are doing. I might be able to help a little. Chuck Payne Magi Design and Support Account Protect by ASK! -Original Message- From: Brent Baisley [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 2:52 PM To: Jan Steinman Cc: [EMAIL PROTECTED] Subject: Re: FileMaker Pro Schema

Re: FileMaker Pro Schema Export?

2002-09-30 Thread Brent Baisley
I never actually looked into it. There are so many "work arounds" I need to do in FileMaker that I just redesign the tables in MySQL. If there isn't a FileMaker converter, I'm sure there is a DBF converter. You can just save you FileMaker databases as DBF and then convert them. On Monday, Sept

Re: FileMaker Pro -> MySQL

2002-06-14 Thread Zak Greant
On Fri, 2002-06-14 at 20:57, Chris Garaffa wrote: > So my Linux server machine (Pentium MMX 225, RedHat 7.1) is up and running > with Apache and MySQL... I'm going to stop using my iMac (Mac OS X) for > database stuff. I have a very large database in FileMaker Pro, though, and > I'd love to know i

Re: Filemaker Pro and Dates

2002-05-29 Thread Kim Kohen
G'day Cameron > Of course MySQL stores dates in -MM-DD > whilst filemaker uses DD-MM- and so when I import my delimited text file > MySQL interprets the dates incorrectly. I can't seem to find a way of > changing the date format in Filemaker, This can be done easily (we do it every

RE: Filemaker Pro and Dates

2002-05-29 Thread Gordon
If you can load the data into MySQL, put the date field into a CHAR(10) field. After the data load, add a date field using ALTER TABLE. You should then be able to run something like UPDATE TABLE tablename SET NewDate = CONCAT( RIGHT(OrigDate,4),

RE: Filemaker Pro and Dates

2002-05-29 Thread Cameron Murdoch
EMAIL PROTECTED] Subject: Re: Filemaker Pro and Dates Do you have any experience with Perl? Perhaps a quick script would convert your tab delimited files to the proper format? Bradley Cameron Murdoch wrote: > Hi all, > > I apologise if this question has been asked recently; I have check

Re: Filemaker Pro and Dates

2002-05-29 Thread Paul DuBois
At 23:45 +0100 5/29/02, Cameron Murdoch wrote: >Hi all, > >I apologise if this question has been asked recently; I have checked the >list archives and could not see anything. This is my problem: > >I am trying to convert and import a fairly convoluted Filemaker Pro 5 >database to MySQL. I have e

Re: Filemaker Pro and Dates

2002-05-29 Thread Bradley Brown
Do you have any experience with Perl? Perhaps a quick script would convert your tab delimited files to the proper format? Bradley Cameron Murdoch wrote: > Hi all, > > I apologise if this question has been asked recently; I have checked the > list archives and could not see anything. This is my