Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
Databases Programming GUI Software

Replacing FileMaker with Free Software? 445

jhealy1024 asks: "I'm looking for a way to replace our FileMaker DB solution with an open-source RDBMS. Problem is, FileMaker's GUI and report design tools are pretty darn good, and I can't find a suitable replacement. Anybody out there have a solution that doesn't require me to take a year off to hand-code a replacement solution?"
"I'm the netadmin for a small private school. Since we're Mac-based, we've grown up storing all our data in FileMaker, including student information, grades, class assignments, gifts, inventory tracking, and just about anything else you can think of.

FileMaker is coming out with version 7, which is going to require us to tear all our databases to pieces and build them up again from scratch. While the new FileMaker is an improvement, it's still a toy as far as "real" databases go. (The latest update just introduced relational tables, for example). Also, data lock-in is becoming a problem; I'd like to have access to all our data from non-FileMaker interfaces (to populate our LDAP directory, for example). While we can work an export from FileMaker, it would be much better if the data were available in an open, standard database instead.

I figure, so long as we're rebuilding everything from scratch for version 7, why not use a "real" RDBMS (no flames about which, please). Problem is, FileMaker does two things very well:


  1. Rapid development of front-end data entry screens (using a GUI for layout)
  2. Ability to create printable layouts for reporting (mail merges, report cards, etc)
I can program data entry screens myself if I had to (either on the web or on the clients directly), but the printable layouts would kill me. Does anybody know of any package that will allow me to replicate FileMaker's easy interface for use with a RDBMS package such as PostgreSQL or MySQL?

Thus far, the only solution I've found is to use some kind of SQL access plug-in for FileMaker. This way, I get to keep the FileMaker interface but ditch its lousy relational model. Unfortunately, I'd still have to pay for FileMaker, and the SQL plug-in requires tons of extra coding to pass the data from FileMaker to SQL and back again.

I know other people have had to move from small, proprietary systems (FileMaker, Access, etc) before; what have you done to keep the simple user interface alive?"
This discussion has been archived. No new comments can be posted.

Replacing FileMaker with Free Software?

Comments Filter:
  • What we do in Access (Score:2, Interesting)

    by Marxist Hacker 42 ( 638312 ) <seebert42@gmail.com> on Tuesday August 31, 2004 @01:40PM (#10120375) Homepage Journal
    Is create an Access Data Project that links to the OLEDB/ODBC data source, thus pulling in the tables and keeping the Access interface. This works because we're already paying for Access anyway as part of our standard office build. I'm kind of surprised that File Maker doesn't offer something similar- Access has *so* many ways of doing this in comparison.
  • FileMaker Rocks (Score:2, Interesting)

    by Walrus99 ( 543380 ) on Tuesday August 31, 2004 @01:42PM (#10120399)
    Been using FileMaker for our office for six years. Easy learning curve, easy (more or less) to use web interface. Tried MySQL and PHP but the learning curve was too steep for now. Not sure how 7 will be, but on 6 now and its working great. Now does anyone out there want to help me enter 500 city contacts? Whatever you use, you still have to do data entry.
  • PHP/MySQL (Score:3, Interesting)

    by viperone ( 648580 ) on Tuesday August 31, 2004 @01:43PM (#10120410)
    I'll agree with the PHP/MySQL option. Our University did everything using ColdFusion against an oracle db, php/mysql is actually better to script in (if you dont need the scalability of oracle) and we already had an oracle db for other things anyway.
  • Re:DIY (Score:1, Interesting)

    by Zemplar ( 764598 ) on Tuesday August 31, 2004 @01:47PM (#10120484) Journal
    I'd second this motion.

    I've only been using MySQL for about a month from first downloading it, and have been quite impressed. Learn a system like this, and you'll have a great long-term solution. There are quite a few GUI based tools to make administration of MySQL relatively painless, but don't expect that you won't need to read up some.

  • by LiquidCoooled ( 634315 ) on Tuesday August 31, 2004 @01:52PM (#10120544) Homepage Journal
    But thats the beauty, and the downside of Open Source/free solutions.

    This guy is asking for our experiences, and pointers to locate a piece of code already written which will fulfill his requirements.

    This is similar in a way to slashdot dupes, and patent prior art. If he reproduces code which already exists, then hes wasted 12 months doing something completely redundant.

    Hopefully one of us will be able to suggest a path to an acceptable solution to his problem.

    As it happens with this one, my thinking is "if it ain't broke...".
  • Exactly (Score:4, Interesting)

    by BoomerSooner ( 308737 ) on Tuesday August 31, 2004 @01:52PM (#10120549) Homepage Journal
    Hammer meet Nail. But sir, I'm Screw.

    Overkill isn't necessary, a quick, stable, and workable solution is.

    Also I'd be inclined to know the posters skill level. Simply saying "I'm going to re-implement this system" is vastly different than saying "I know how to re-implement this in a better manner, any suggestions?". I get the feeling the poster may not have the necessary understanding of moving a simple project to a significantly more sophisticated design.

    Or I could be completely wrong as my wife frequently points out.
  • Re:Access (Score:1, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @01:53PM (#10120554)
    Access Professional also comes bundled with a tool to create a stand-alone executable for use with the databases. You don't have to pay for licensing on this executable. The database design also cannot be modified using it, and for a deployment situation that's probably a good thing.
  • Re:Servoy (Score:1, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @01:55PM (#10120582)
    Somebody has mentioned Servoy to me before, and I was really impressed with the features listed on their web site. I have evaluated the latest version of Servoy a couple of months ago, and unfortunately it is very buggy.
  • Knoda (Score:5, Interesting)

    by mpieters ( 149981 ) on Tuesday August 31, 2004 @01:57PM (#10120608) Homepage
    I think Knoda [knoda.org] sounds like an exact match. Feature list:

    * define and delete databases;
    * create, alter and delete tables and indices;
    * add, change and delete data in tables;
    * define, execute and store sql queries;
    * define, execute and store queries with a "query by example" GUI;
    * import and export CSV data;
    * define and use forms;
    * define and print reports; and
    * write your own extensions using the integrated Python interpreter as scripting language

    This is the Open Source equivalent of MS Access and Filemaker, except that it can use any database backend (native MySQL, PostgreSQL and SQLite support, plus ODBC). The report and form designers are full WYSIWYG GUIs, like the commercial counterparts.

    Possible disadvantage? It requires KDE3, so it does require quite some extra bagage you don't normally find on a Mac OS X system, but it *should* work.

  • Re:web-based (Score:2, Interesting)

    by stipe42 ( 305620 ) on Tuesday August 31, 2004 @01:58PM (#10120620)
    That's why I suggested using PDFLib or something free if you can get your hands on it. Anything you want printed you make a PDF of on the fly. This is functionally identical to FileMaker or Access having GUI screens separated from 'reports' which are formatted nicely for printing.
  • Re:web-based (Score:3, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @01:59PM (#10120631)
    Though the browser printing issues you describe are real, I don't think they're the ones everyone else has in mind. The PDFLib part of these solutions means that for print, they are using the web application to generate PDF directly. Nothing to do with web browsers rendering html.

    The real problem is that programming reports in PDFLib (or one of its many competitors, some Free) can be a little complex. There's no GUI layout helper, like Filemaker or Access has -- drawing a rectangle is a statement in PHP code, not a drag of your mouse.
  • Gnu Enterprise (Score:3, Interesting)

    by MooCows ( 718367 ) on Tuesday August 31, 2004 @01:59PM (#10120635)
    Gnu Enterprise [gnuenterprise.org] might be just what you need.

    It's not very 'complete', but very extensible.

    Look at the pretty screenshots [gnuenterprise.org].
  • by Anonymous Coward on Tuesday August 31, 2004 @02:13PM (#10120771)
    I use Filemaker a lot - have several hundred databases that I have set up using FM and I use them several hours a day. Been using FM since it was a Nashoba product in 1986 and have databases that I set up 15 years ago that I still keep up to date.

    I started out with Filemaker 1, upgraded to Filemaker 2, and finally settled on Filemaker 4.

    Every time Apple comes out with a new version, I look at the features, try out the demo, and ask myself Question 1 "Do I need to upgrade at all?"

    So far the answer has been no and I'm still using Filemaker 4.

  • Re:DIY (Score:2, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @02:14PM (#10120782)
    How many people really give a shit about multiple OSes? Really.

    How many people make a web front end so it is "Compatible", only to design it with IE6 and Active-X necessary?

    Please quit pissing down my back and telling me it is rain. I know that is why they say they do it, but it doesn't make it any more cross compatible, and no one really cares about cross compatibility anyway.

    Mot people, PHB's and developers alike, are more than willing to give a big raspberry to anyone not on their platform.

    The parent to your post has a point. For usability, just go with a desktop app. If you want to support multiple OS's and have usability, port the product.

    For anything non-trivial, having a usable product on multiple OSes is cheaper to port a C program with a OS library than make some kludgey CGI hack of a web product.
  • Filemaker (Score:1, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @02:16PM (#10120809)
    Ironically I am sitting on the conference floor of DevCon in Phoenix. For those of you who don't know that is the FileMaker conference. I am afraid that based on your comments and critiques you have not actually understood just how much has imporved in 7. It is FAR from a mere upgrade and constitutes a major leap forward. If you wish to convert your solution simply purchase FMROBOT. this will move up your solution with some minor touch ups. As far as lack of xDBC and SQL type connectivity, that has been addressed with Server7advanced. As far as the cost compared to a free open source solution is concerned. Not only is FMP not cost prohibitive but you will pay for the alternative 100 fold in dev time.
  • Re:DIY (Score:2, Interesting)

    by kashou ( 84729 ) on Tuesday August 31, 2004 @02:19PM (#10120839)
    Even better than doing it yourself. Work with a professor and come up with a new class syllabus. Have the students create the database and gui (MySQL + PHP).

    A great learning experience for them, and free labor for you.
  • Re:DIY (Score:2, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @02:20PM (#10120847)
    With FileMaker, the database _is_ on the server. So is the application design and interface.

    What's more, you as the developer (or anyone with privileges) can make changes to the interface on the fly, and as soon as you commit them, everyone else sees them, without even having to restart the app, let alone download something.

    Further, the idea that all web apps have the same interface is wishful thinking. For example, compare the interfaces for Expedia and Travelocity, which both do the same thing. They're as different as can be.
  • by Jason Mark ( 623951 ) on Tuesday August 31, 2004 @02:21PM (#10120856)
    Great point! I would even extend the original post to say is there ANY other cross platform tool that's quick and easy to update that compares to Filemaker? We also need to have control of printing, and it can't be a web interface. We did a study on going to a web interface, and those seconds end up. If we switched our system over to a web based interface we were looking at almost 5 hours per week of lost productivity just because we had to hit submit so many times, and wait for the screen to draw, not to mention lost data, more complicated list views, etc.
  • Why Access? (Score:2, Interesting)

    by Laebshade ( 643478 ) <laebshade@gmail.com> on Tuesday August 31, 2004 @02:27PM (#10120939)
    Access is horribly slow for any real database usage (i.e. more than a few dozen people). Before you mod me down as flamebait, you should realize the company I work for uses ODBC for all of the database needs, and uses ASP/JSP as the interface. The performance sucks. Get anything more than 20-30 people using it at once and the server comes to a crawl. FYI, the setup is used about 70% for data retrieval, and about 30% for data entry. And, for some reason the coders decided it would be good to use IBM WebSphere for the new interface, but still keep the ODBC server.
  • Re:DIY (Score:2, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @02:42PM (#10121116)
    FileMaker is *NOT* a web design product. It offers some (profoundly lame IMO) web 'front-end authoring' functionality but it's NOT a web-centric product.

    What it does do *VERY WELL* is allow a non-programmer to build responsive and easy to use interfaces that can access a networked database (or set of databases).

    The original poster doesn't seem to explicitely say one way or another but the context *suggests* he's using FileMaker with a client rather than a web based UI.

    I'm not going to get into a long post but suffice it to say that having used systems similar to the sort the original poster describes, replacing them with a web based UI will create an inferior user experience.

    While I don't have the knowledge to suggest one, the poster needs an FOSS solution for easily and rapidly building a responsive client-side GUI application for a FOSS database. If they build a bunch of web forms to solve this they will *piss off their users*. Pissing off users will not advance the cause of FOSS software or our poster's career.

    - AC
  • Re:DIY (Score:3, Interesting)

    by jdbo ( 35629 ) on Tuesday August 31, 2004 @02:48PM (#10121189)
    My personal preference is also for web-based apps... however, you're not really answering his question, for the following reasons:
    - client-server database applications (i.e. "database on ONE SERVER"...) are possible w/o using a web browser as the platform for the client, but instead using an app native to the client OS. this is not only how Filemaker does it (yes, FM can work w/ remote dbs), it's the standard way of doing this sort of thing
    - "They don't have to figure out whatever GUI you develop for the tool." - huh? while certain functionalities are always clear on the web, those tend to relate to navigation, not inputting and updating data. once an application gets specific (i.e. worthwhile) enough, it's doubtful that it'll look muhc like a common web-page asides from some header navigation. using the web as a dev. platform is only helpful towards GUI design when the app's GUI shares a lot w/ the web browser GUI.
    - "one easy interface that everyone can reach and access make it easier to maintain" - this, I almost agree with. I removed "easy" as I've found that making web app interfaces "easy" often requires more work that would be necessary in a native app (either lots of design work or lots of development work to paper over browser diffs).
  • by rufo ( 126104 ) <rufo&rufosanchez,com> on Tuesday August 31, 2004 @02:51PM (#10121231)
    Can you explain to us why exactly it is you need to upgrade? If your solution is in FM6, and works fine, why upgrade?

    I work for a major database developer in the Rochester area. Our largest example is a manufacturing plant that's running entirely on Macs and Filemaker. The entire plant is on FM3/4, running on 6100s, 7100s, some 8500-era w/G3 upgrade cards, and a few G5/G4s for people who need them. At any given point in time there will be 30 people working in the database at once. The entire business has been running on FM for over 15 years.

    You know what? Thing works fine. We just upgraded from an older G3/733 to a dual processor 1Ghz machine and run FileMaker Server 3 in Classic.

    So upgrade if you must, but first make sure it's actually justified. Remember, not all proprietary software is bad - if the only reason you want to use open source is because it's open source, that's one of the worst reasons I could possibly think of. Pick the right tool for the right job. If you need to get data out, look into FM6 Unlimited and using XML/XSLT transforms, or web formats that a script could process - FileMaker's not a dead-end format by any means. Also check into FX.php [google.com] - once you get stuff into PHP there's almost no limit to what you can do.
  • by stienman ( 51024 ) <adavis@@@ubasics...com> on Tuesday August 31, 2004 @02:55PM (#10121280) Homepage Journal
    Access was originally designed as an application development tool. You can create your database, code, reports, etc, then use Access to create a runtime executable. End users can't modify the program, but if you need to make changes just redistribute the runtime.

    It's just like compiling a program in visual studio. You can't redistribute visual studio, but you can distribute the programs you create with it.

    -Adam
  • Re:web-based (Score:3, Interesting)

    by Christianfreak ( 100697 ) on Tuesday August 31, 2004 @02:59PM (#10121322) Homepage Journal
    That's why he mentioned PDF. I've had lots of success using HTMLDOC to make reports. You make a regular HTML template (like what i use for all my stuff) some big table with bunches of report information and HTMLDOC coverts it to a PDF and takes care of all the messy page breaks, etc.
  • Re:DIY (Score:3, Interesting)

    by G00F ( 241765 ) on Tuesday August 31, 2004 @03:02PM (#10121349) Homepage
    "Also, everyone is familiar with the web, the way it works and how to get things done. They don't have to figure out whatever GUI you develop for the tool."

    I personaly find some web pages, and web applications nearly imposible to navigate through, lat alone for the Avg joe who double clicks everything on the web.

    But I aggree about everything else about having a centralized place for the "application".

    Am I the only one who wants to see java take the place of many things here? One app, hosted on centralized web server, and full features that websites can not mimic.
  • by dheltzel ( 558802 ) on Tuesday August 31, 2004 @03:05PM (#10121384)
    Before you set out to blindly replicate the current functionality with a new custom solution, you really should ask yourself "who else has had this problem and how have they solved it?" I'm not talking about the "porting problem" here, I'm talking about the overall "problem" that your current filemaker s/w handles.

    If you can identify similar organizations with similar problems, you might find an existing program (hopefully OSS) that you can just start using. If you need to customize it a bit, that will be a whole lot easier and cheaper than trying to roll your own solution, and the changes you make might be used and appreciated by others who use the program.

    There is a lot of existing work that is being wasted because we start off assuming our solution is too highly customized to be changed. You might pick up enough shiny new features you never had before to make your users willing to put up with a few tradeoffs.

    Maybe you will look and not find anything useful, but do look really hard before you just port your existing code.

  • Having it all... (Score:1, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @03:06PM (#10121403)
    Part of the problem, that I (and many techs) have is that we want it all. In the case of any technical infrastructure discussion, it is rarely possible to "have it all." (aka: Fast! Good! Cheap! You can have two of 'em, but not all three.)

    In this case, having it all entails migrating to a solution that replicates/improves upon the existing solution without having to do a lot of programming.

    Forget it. It'll never happen. If you migrate out of FM, you WILL have a ton of coding to do to replicate the existing functionality, and you'll be employing a hodgepodge of technologies that may work, but will take time to develop, learn, troubleshoot, and maintain. (Take your 6 mos and double it...) Plus you might not be able to come close to the things fm does really well: interface and printing.

    Although FM7 is different, many solutions can be imported with minimal changes. It might make some sense to recode your system from the ground up, but you might be able to import with some minor mods. (If you have a number of FM Pro licenses, use that to your advantage-- get your FM sales rep involved and get them do some work for you.)

    There are advantages and disadvantages to both sticking with FileMaker or migrating to SQL. (Migrating out MIGHT be the best choice for you...) However, certainly look before you leap, and compare the advantages/disadvantages of both systems before deciding.
  • Re:TROLL? HUH?? (Score:3, Interesting)

    by tsm_sf ( 545316 ) * on Tuesday August 31, 2004 @03:15PM (#10121489) Journal
    Well, I pitched a similar project to a client of mine, and one of my key points was that making changes to his FileMaker database/app is more labor intensive than modifying a similar php+sql setup. Might take time to set up, but if changes are needed frequently (as in my case), then you'll be money ahead in the long run.

    Troll Prophylactic: I'm proficient with FM.
  • Re:DIY (Score:3, Interesting)

    by gfxguy ( 98788 ) on Tuesday August 31, 2004 @03:33PM (#10121657)
    Go to the mysql download page [mysql.com] and look for graphical clients.

    Apparently, mySQLcc ("control center") is no longer under development, but I think it's pretty nice as is. There are two new projects replacing it that I haven't checked out yet.

    It is still NOT a FileMaker like UI builder, though, but it does let you manage a database with a nice front end GUI.
  • Re:DIY (Score:2, Interesting)

    by discord5 ( 798235 ) on Tuesday August 31, 2004 @03:36PM (#10121693)

    While most of my time I spend solving networking problems & coding webinterfaces I'd like to congratulate the parent poster on his keen remark. My rant isn't on the FOSS community, but the webdevelopment trend in general.

    Why is that everyone in the FOSS community always wants EVERYTHING to be a web-based application.

    I _REALLY_ don't know. I've been irritated by it as well as a developer. When I started out working for the company I currently work for I thought "OK, a few webbased projects every now and then, easy enough.". Three years later, most of the coding I do are still webbased projects.

    Is it so hard to imagine that some people really want application state, a really responsive UI, the ability to work with data without many round-trips to the server, etc?

    The funny thing about it is, most people don't care and don't know the difference between a browser and a client anyway. Of all the clients I've happily provided with a webinterface, there has been only one that said "This just isn't working for me".

    Perhaps we are seeing so much webapps because they are so easy to develop compared to "classic" GUI apps. Even if we weren't to resort to using C, C++ or java, we'd still be dealing with event handlers, signal handlers or signals and slots (whatever rocks your world). Webapplications don't have that, and simply have input through parameters or STDIN, and output through STDOUT in a language that every geek and his trained monkey speak fluently.

    By the time you've done this for a year, you've developed some sort of toolkit that allows you to easily make HTML tables from an SQL query, and webdevelopment just became 10 times faster. And that's the kind of thing the people upstairs like to see: a codemonkey that spits out code in days in a system nobody can migrate away from easily because the toolkit/perl-module/php-include is hidden safely on the machine where the customer can't access it.

    Webmonkeys in the long run can be x times more efficient than real programmers, and not just because of the fact that it's easier and doesn't require the knowledge of pointers, but the fact that once you have the toolkit you will hardly ever have to write anything new. HTML 4.01 is still widely in use and that won't change very soon (but still, it's very little work to switch over if you use clean HTML), SQL won't change very soon either (but sometimes you have to use another DB and do some late night coding on your DBH-layer), and the rest is just a few lines of perl code (or PHP, or whatever...).

    What the customer gets is an application that does what he needed (some addressbook, some view over statistical data, something or other), developed in a small amount of time, accessible over the internet (hopefully in a secure fashion), and the joy of it all (what interest them most) is that it is cheaper than the solution with the GUI client.

    By all means, this is not a rant against the use of GUI applications. Sometimes I'd give real money to escape the boredom and lack of features of HTML and cousins. I'd love to spend some time hacking together something really nifty in C++ with QT, or whatever widget set I was in the mood for that day. But when I start thinking that I'm going to have to explain that the code for a GUI app is horribly more complex to maintain than the couple of SQL statements and HTML templates to my manager, I know I'll have to explain my toolkit to the poor sod who'll take over my work once I'm fired.

    So, perhaps that is the reason why I have to do so many webprojects. Not because I'm good at it, but I've made a tool that only I and one other know the full internals of, and we both became fast developers because of it. Maybe it is because our customers can't afford to send me in to C/C++/Java heaven for the next 3 to 6 months, or maybe because the GUI development goes to all .NET programmers these days (which sa

  • Not if you go to a java type solution like oracle did with their Application Server. Very nice and very fast. Not free but there might be something out there like Oracle Forms?
  • by Anonymous Coward on Tuesday August 31, 2004 @04:08PM (#10121996)
    WebObjects [apple.com], while not free, will get you a really easy way to build a GUI for accessing your data in a relational database.
    Demo developer version available from connect.apple.com [apple.com] with a free ADC account.
    Direct2Web is one of the easiest ways to do your RAD and get clients or yourself up and running.
  • RealBasic (Score:2, Interesting)

    by cthlptlk ( 210435 ) on Tuesday August 31, 2004 @04:23PM (#10122129)
    Putting aside the issue of whether or not you really need to upgrade, which others have addressed, the RAD tool that does what you want is RealBasic. It's not OSS or free-beer free, but you only asked for compatibility with free stuff. Caveat: I only goofed around with the demo, but I've never heard anything but good stuff about RealBasic.
  • by lavaface ( 685630 ) on Tuesday August 31, 2004 @04:36PM (#10122227) Homepage
    I am currently working with Filemaker Dev 7 and while it may be easier to migrate, ultimately I think the better solution is to make the switch. Why? Because I Filemaker is limiting. Dialog boxes are limited to three inputs. Scripting anything of substance requires clicking on countless buttons. The interface options are nice but the process of writing the backend is arcane and obfuscated (to me at least.) Also, the documentation for FMP7 has been slow in coming, while there are multitudes of resources for Open Source solutions. Fmforums.com is nice but sometimes I find it sorely lacking.

    One final point about Open Source--other people are working on solutions with you. PhpScheduleit is a nearly perfect match for our equipment reservation needs (once they implement multi-day reservations and quotas). Some of the webcalendars are also coming along quite nicely. I happen to work at a public university so I understand the submitter's needs. I would love to see a wider movement from public institutions to contribute to open source solutions (such as school management) I will be watching this thread closely for any ideas about presentation tools. Also, is there any equipment checkout projects underway out there? :)

  • by egjertse ( 197141 ) <slashdot AT futt DOT org> on Tuesday August 31, 2004 @05:01PM (#10122499) Homepage
    I can indeed vouch for Rekall - I use the Linux version myself, for development and testing, and have successfully deployed the Windows version (using databases and interfaces designed on Linux) at client sites. The only thing I found lacking, was an updated version of the Windows Runtime version of Rekall (a version compiled without the development interface, for end users). This was also recently released though, and I will be purchasing some licenses shortly.

    Form/report design is point-and-drool, and even includes wizards for fast form- and report creation. It allows forms and report templates to be stored in the database itself, so only a small file containing db login information etc. needs to be installed along with the client software. You can script everything with Python, or use macros if you are unfamiliar with Python.

    It's an excellent RAD tool for database apps that require little to no programming experience, and it comes with plugins for a lot of databases (including MySQL, Postgres and ODBC). Some of the DB plugins are sold separately for the binary W32 version. As for a Mac version, there are currently no binaries available as far as I know. I do not own a mac, so I'm not sure if it compiles cleanly on MacOS. Apart from the DB libraries I think it only depends on QT and Python though, so I can't see why it shouldn't work.
  • Re:DIY (Score:1, Interesting)

    by Anonymous Coward on Tuesday August 31, 2004 @05:18PM (#10122651)
    Are you kidding? I used to believe the bullshit they told us in school, "compile once, run everywhere". But, have you ever actually tried writing a program with a significant GUI in Swing? Writing it is trivial. Getting it looking even halfway decent on every platform is *not* trivial.

    We went with Swing for our last project since it was supported on all the platforms we needed to target (OSX, Linux, and Windows), thinking to ourselves how clever we were for "leveraging" such a powerful tool. That was until our client started pointing out dozens of tiny visual glitches (line wrapping cutting off characters, Layouts that didn't perform identically on all platforms, etc.). It gets worse when using the platform native LnF wrappers.

    Not to mention internationalization errors, the cause of which we STILL can't track down.

    As a direct result of the pain of Swing, we're buying a multi-platform Qt license.

  • Re:DIY (Score:4, Interesting)

    by dasmegabyte ( 267018 ) <das@OHNOWHATSTHISdasmegabyte.org> on Tuesday August 31, 2004 @05:36PM (#10122821) Homepage Journal
    Web programming is NOT client-server programming, because you do not program the client. Instead, you issue a set client a series of cues on how it should interact with your server, which handles data processing as well as flow control.

    The main difference between client-server programming and web programming is the role the client plays. A dumb client like a web browser responds in one way which is pre-ordained, and thus is unreliable in verifying data and presenting the user with information. The role of formatting and display is the responsibility of the server, and this cuts into the responsiveness of the UI. A smart client KNOWS what data it's going to receive, knows how to display it, and knows what data it's going to send back. This knowledge allows it to perform important pre-processing before the server is even contacted, which means less crosstalk, better response times and a more pleasant experience. It's also less stress on the server and if done right can mean greater supportability.

    This is also discounting the fact that the web has no great way of performing many-to-many relationships, or loading information dynamically without replacing the current context. Can you imagine if every time you tried to write a bullet point in Word, the whole program closed and reopened?

    As for "quick, easy changes occurring more easily:" dude, I used to be the backend programmer for a website ASP. I wrote a series of client tools to speed up what the customers considered an arduous, almost unbearable process: updating their website every morning with fresh content. Simply moving the interface from a web site (which was damned responsive, mind you) to a Java client dropped the time to load a manifest of articles from an average of 2 hours to an average of 45 minutes -- and it handled MS Word codes much better. Adopting a static Word aware client along with a Quark XPress scraping tool (try doing THAT on a fucking web page) brought it down to 15 minutes or proofreading. I don't remember smoking any crack when I did these tests, but it must have been the type of crack that gets you a nice fat raise.
  • Try Smalltalk (Score:4, Interesting)

    by chris_sawtell ( 10326 ) on Tuesday August 31, 2004 @06:58PM (#10123600) Journal
    It's go a steep learning curve but the view from the top is just fantastic. There are many vendors of which Cincom [cincom.com] is probably the best known. It has a superb data-entry form generator and several database interfaces. PostgreSQL is one. Also SmalltalkX [exept.de] offers a very good free (beer) implementation.
  • by Gneral Tsao ( 577950 ) on Wednesday September 01, 2004 @12:45AM (#10125601)

    Speaking as someone who is working on a similar product, I would suggest this:

    • keep FMP because you're not going to find a mature OSS product with the same frontend capabilities
    • export the data in either CSV or XML
    • set up a cron job to watch the folder that you will be exporting too. Cron calls a shell script which loads the data into MySQL, or whatever you decide to use as a backend

    Yes this means having your data in two seperate places, but it also means you get to keep the frontend capabilities of FileMaker and if and you don't have to do any major recoding (other than a couple pretty simple shell scripts).

    If you want to go super fancy and not have to export the files manually, make use of the SOAP capabilities in FileMaker Server Advanced (when it comes out, which should be soon -- Server might do this, but I'm not sure). The script could use a web service to check for any changes in the data and then procede to sync.

"If it ain't broke, don't fix it." - Bert Lantz

Working...