Difference between revisions of "Visual FoxPro"

From TheAlmightyGuru
Jump to: navigation, search
(43 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Image:Visual FoxPro 9.jpg|thumb|256x256px|Visual FoxPro 9.]]
 
[[Image:Visual FoxPro 9.jpg|thumb|256x256px|Visual FoxPro 9.]]
  
'''''Visual FoxPro''''', or '''''VFP''''', is a programming language and IDE from [[Microsoft]]. 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''', or '''VFP''', is a [[Computer programming|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.
+
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.
  
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.
+
==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.
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==
 
==Review==
 
===Good===
 
===Good===
* The language has a built-in database creator, editor, and viewer. Though it's not without its problems, it's the best I've ever worked with.
+
* 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.
* 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.
+
* 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]]).
* The SQL speed is lightning fast, even to the point of outpacing SQL Server at times since it doesn't have built-in transaction logging.
+
* It has a full [[Structured Query Language|SQL]] interpreter as well as many additional database features not found even in modern databases, and they're very easy to use.
* The IDE uses a wonderful multi-window system so you can easily open and view several different code blocks at the same time, even from the same object, something I wish Visual Studio would adopt.
+
* 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.
 
* 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.
+
* 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===
 
===Bad===
 
* The database format is way out of date and doesn't support any modern formats like Unicode.
 
* 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 implied.
+
* 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.
 
* 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.
 
* 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.
 
* 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.
 
* 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===
 
===Ugly===
 
* VFP has really poor ActiveX and OLE support, often to the point of crashing the UI.
 
* 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, or three or more dimensional arrays are not possible.
+
* 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.
 
 
==Quirks==
 
This is a list quirks found in VFP and how to resolve them.
 
  
* The VARTYPE function doesn't work correctly if the expression doesn't exist and if it contains a period, because VFP will assume it is a table. You must use TYPE instead.
+
==Tricks==
* There is a bug that sometimes occurs when, if you LOCATE into a table with only one record, even if FOUND() returns .T. and the record pointer reports that it is on the first record, VFP will give and empty value for the field. This can be resolved by adding additional blank records.
+
* [[Visual FoxPro Tricks]]
  
 
==Links==
 
==Links==
* [http://en.wikipedia.org/wiki/Visual_Fox_Pro en.wikipedia.org/wiki/Visual_Fox_Pro] - Wikipedia.
+
{{Link|Wikipedia|http://en.wikipedia.org/wiki/Visual_Fox_Pro}}
  
  
 
[[Category: Software]]
 
[[Category: Software]]
 +
[[Category: Windows Software]]
 +
[[Category: Windows 3 Software]]
 +
[[Category: Database Software]]
 
[[Category: Programming Languages]]
 
[[Category: Programming Languages]]

Revision as of 15:33, 21 April 2020

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