vote up 1 vote down star
1

Recently I found out that the company a friend of mine co-owns uses 4D, which I've never heard of before. They swear by it, but they're non-technical and what they say about it sounds like memorized marketing blurb. Unfortunately the 4D website also seems devoid of any actual information and is filled with words like "comprehensive", "solution", "platform" and "integrated" instead.

Since that thing is rather expensive and uses a custom language that I don't have much inclination to learn just for one project, I'm cautious about it and I'm wondering if anyone had any experience with it? Would you recommend it? What is it good for? What competitive advantage would I gain by learning it as a programmer, or using it as a company?

flag

Ten seconds on their website and I despise them. Apparently they make obfuscators because I can't find out a goddamn thing about their software. – Will Feb 23 at 12:49
Check in the error code listings... looks like some kind of ORM + database product. They have a "Find a developer" link... might want to try asking them. – StingyJack Feb 23 at 13:01

5 Answers

vote up 7 vote down check

4D has been around for a long time (~25 years), so it's much older than e.g. MySQL. Think of it as a professional version of Microsoft Access: It has its own Pascal-inspired host language, its own relational database engine, a very mature IDE for rapid GUI development and a custom runtime which allows for true "write once, run anywhere" (anywhere being Mac OS (X) and Windows, that is). Nowadays, it also understands SQL, there's a server version and even an integrated web server. It's fairly powerful, so the comparison to Access probably does not do it justice.

Today, I believe it's mostly used for legacy apps which are as old as 4D is. I don't think I would learn it again today, much less start new projects with it, since you can get the same functionality and then some by stacking up open source components.

link|flag
Are there really open source IDEs out there which let you create a database and hook up a GUI as fast as 4D? I don't know the open source tool scene that much - I'm not trolling! – Andy Dent Feb 23 at 14:29
I don't know of any open-source IDE that would do that. I think comprehensive IDEs that do everything are a personal preference thing. I'd rather choose my own IDE than have to use the vendor-provided one. – Pies Feb 23 at 14:51
@Pies: It's not the IDE per se but its Access-like ability to build application GUIs in a visual environment. Apple's XCode can do this as well, but only on/for Mac OS X. I'm not aware of any cross-plattform tool for this, however I never really looked for any options. – Simon Feb 23 at 19:28
@Simon: Well, if you need that kind of functionality above everything else and are willing to pay a price in money, developer mindshare, versatility, etc. then you should probably check out 4D. – Pies Nov 20 at 4:37
@Simon REALbasic is even better than 4D at putting together cross-platform GUI however they have removed their database bindings (part of a long-term cleanup of the core) and so for database apps it's not a rival - you have to map SQL results yourself. I'm working on a port of my OOFILE c++ frameworks to make that kind of thing trivial, started by getting the report-writer going. – Andy Dent Nov 21 at 1:30
vote up 2 vote down

I'll be wary of investing too much into something like this. On the good side, if that's what your company uses learning it will pay dividends. But the skills you learn will be hard to use in other places.

link|flag
vote up 0 vote down

After looking at https://www.4duk.com/products/ataglance.html, I'd recommend you stay clear - it looks like one of those products that's going nowhere.

It reminds me of the time I was made use a development platform called Witango - absolute nightmare to use, and all apps had to be rewritten in .NET very shortly afterwards.

Invest your time learning something more mainstream/employable.

link|flag
vote up 1 vote down

I used to do some very serious 4D work, one of the systems I wrote is still in use as an enterprise system about 16 years later. I got frustrated because they were taking years to come out with the new object-oriented version of the language and I was writing thousands of lines of code to use a third-party table control.

4D delivers cross-platform, very high-performance client-server systems using a proprietary server. The database model is much more set-oriented than SQL and pulls the sets all the way into the core language. It does a nice job of delivering code to the clients because it compiles all procedures to native code which is cached locally and updated on-demand when it is out of date.

The language and GUI environment have their quirks but the flip-side is that there will probably be a good living to be made from supporting it as a legacy platform. if you can get someone else to pick up the tab for the tools, it may be a useful addition to your consulting toolbox. You have to consider how much business-specific code is gonna be out there for a unique product with that long a history!

An engineer for whom I have huge respect was recently hired by 4D which says a lot about their commitment to the future, hiring this kind of guy.

I've been working a lot with legacy systems recently, doing a port from old Mac stuff to WPF and the contrast between the mostly-unused complexity of Visual Studio and old Mac tools reminded me of 4D. I'm also porting my OOFILE C++ database and reporting frameworks to REALbasic - the OOFILE set-oriented operations came directly from what I loved about 4D and this too made me think I was too harsh in this answer originally.

The thing to remember about 4D is that it was set-oriented from the beginning (written by a mathematician) and much easier to use for many things than SQL. The deployment model of 4D Server is a superb combination of desktop app and network provision - compiled components are cached on the desktop and automatically sent to a client when needed. There's no need to shutdown or actively push or deploy updates. The GUI model of 4D was frustrating but looking at the site today, they have solved most of the issues that I had to use third party solutions for years ago.

link|flag
So basically you recommend learning it to either support legacy systems (how's that for a dream job) or to work for someone willing to spend many thousands of dollars for easily replaceable the software. I'm not convinced :) – Pies Feb 23 at 14:37
But I guess it could be a nice job if I didn't like programming as much as I do :) – Pies Feb 23 at 14:38
I think you're probably speaking from a position of ignorance when you say "easily replaceable"? I know that the quote to replace just part of the main system I wrote in 4D came in at about 4x what it cost to develop. – Andy Dent Feb 23 at 16:50
I meant that it's easy to use other software stacks, which are more popular and often free, instead of 4D. – Pies Nov 20 at 4:41
vote up 0 vote down

I've heard it's 33% better than 3D....

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.