Visual FoxPro

From TheAlmightyGuru
Revision as of 15:33, 21 April 2020 by TheAlmightyGuru (talk | contribs)
Jump to: navigation, search
Visual FoxPro 9.

Visual FoxPro, or VFP, is a programming language and IDE that was sold by Microsoft, but is now defunct. The primary use of the language is for rapid database application development. The programming syntax is similar to that of Visual Basic (not VB.NET). The language uses dynamic inferred structural typing. It compiles to pseudo-code which is interpreted by the runtimes which must be distributed along with the program.

Visual FoxPro is based off of FoxPro, which was the result of Microsoft buying FoxBase from Fox Software. FoxBase was derived from dBase III. The last official release of Visual FoxPro was version 9, which was released in 2004 with a final service pack released in 2007. Microsoft officially discontinued support in 2015, most likely because it was taking away sales of from SQL Server, which was far more expensive.

Personal

Though I had seen FoxPro icons since my first days with Windows 3, I never knew what FoxPro was. I got my first taste of Visual FoxPro in 1999 because it was the main programming language used by the company I started working for. I was familiar with Visual Basic, so it was pretty easy for me to pickup the syntax, and I had just developed an Access application for my high school, so I knew enough about databases to secure my job. I've used VFP from version 6 until its final release, version 9.0 SP2.

Review

Good

  • The IDE has a bunch of built-in editors for databases, forms, reports, menus, and more. Though none of them aren't without their problems, it's one of the most complete I've ever used.
  • The IDE uses an vastly superior MDI (multiple document interface) instead of the inferior, and, unfortunately, now industry standard, TDI (tabbed document interface). Unlike in a TDI, you can easily open and view several different code segments and designers at the same time. You can even open multiple widows from the same code source which is extremely helpful, something I wish every other IDE would adopt (I'm looking at you Visual Studio).
  • It has a full SQL interpreter as well as many additional database features not found even in modern databases, and they're very easy to use.
  • Database access is lightning fast, and highly optimized, even to the point of outpacing many other professional SQL programs.
  • Some of the table field types are quite useful like the currency with 4-digit decimal precision, and the numeric which is based on length of digits rather than bytes.
  • Unlike most earlier versions of Visual Basic, VFP had several built-in variable types like datetime and logical with assorted functions to work with them.
  • VFP gives you full access to table statistics without having to query them. For example, if you want to know the number of records in an SQL table, you would generally issue "SELECT COUNT(*)" which requires counting every record in the table individually. However, in VFP, the record count is stored in the metadata of the table, so it doesn't require querying at all.

Bad

  • The database format is way out of date and doesn't support any modern formats like Unicode.
  • Numeric variables (and likewise, table fields) are divorced from most other languages. There is no support for unsigned values at all, and there are no primitive types like byte, int, long, etc. Instead, all numbers are treated as either signed double integers or floats, and even then, their type is always implied.
  • Functions that affect file names like Copy File don't preserve text case.
  • The UI tries to remember the position of windows and the code block you last viewed, but usually fails.
  • Although VFP is mostly object oriented, it has a lot of legacy commands and functions that are procedural. This lack of standards creates confusion.
  • While text fields longer than 254 characters are possible, they require the use of "memos" which are especially cumbersome to work with.
  • VFP's help has a poor index which is missing dozens of commands. For example, a SCAN...ENDSCAN is a very popular command, but, if you type "SCAN" into the index, you will only get a page for "SCAN loop exit." It is also missing indexes for ALEN. To find these pages, you have to use the Search tab in help.
  • VFP's help is seriously lacking on SQL examples and only shows you the most basic of queries.

Ugly

  • VFP has really poor ActiveX and OLE support, often to the point of crashing the UI.
  • VFP has really poor array support and only supports 2D arrays (to resemble tables). Single dimensional arrays and arrays with three or more dimensions are not possible.

Tricks

Links

Link-Wikipedia.png