Perfect Sync logoPerfect Sync
SQL Tools

If you've never used a Relational Database before, SQL (Standard Query Language) will blow you away. Imagine being able to construct a "sentence" – in a language that is close to Plain English – that tells a database to do something like this:

"Give me all of the records in my AddressBook database where the person lives in California, the age of the person is greater than 18, and the Phone Number is not blank. Show me just the First Name, Last Name, City, and Phone Number fields, and sort the records in ascending order by Zip Code."

Here is the "SQL Statement" for that request:

SELECT FirstName, LastName, City, PhoneNumber
FROM AddressBook
WHERE State='California' AND Age>18 AND PhoneNumber<>''
ORDER BY ZipCode

The database does the rest!

You simply submit that request, and start reading data. You don’t have to worry about the file format, indexes, linked lists, lookup tables, binary trees... or anything else.

The database does all of the work for you!

And that same request will work for any SQL-compatible database, whether it's Microsoft Access, SQL Server, MySQL, Oracle, Btrieve, dBase, Excel, Paradox, FoxPro... drivers are available for more than 75 of the world's most popular database formats, and toolkits are available for writing custom drivers. You can even write one program that opens two or more different database formats, so making a program that is scalable from Access up to SQL Server (for example) is a snap!

It doesn't stop there! SQL databases are Relational Databases. Imagine that you're creating a database to store orders for your company's products. You could create a SQL table (a grid-like structure) called Orders, with a CustomerNumber column, a QuantityOrdered Column, and a ProductNumber column. Then you could create a table called Customers that contains a CustomerNumber column, a CustomerName column, and a CustomerAddress column. Finally, you could create a table called Products, with columns called ProductNumber, ProductName, and Product Price. The beauty of a system like this is that when data is added to the database, each unique value is only stored once. Even if 10,000 different customers order your "Acme Industries Super-Widget 2000" product, that string will only be stored in the database once. The product number will be stored 10,000 times, and the database will automatically look up the product name for you whenever you use the database.

Another example: if your best customer places 100,000 orders, their address will still only take up one cell in the database.

And again, the database itself does all of the work!

SQL databases are also Multi-User. Twenty different people can be entering orders at the same time that somebody else is running a Sales Report, and somebody else is entering new product descriptions.

Finally, SQL databases are popular! That means that your program can use databases produced by virtually any modern DBMS program. And even more importantly, databases that are created by your program can be used by other programs. For example... Need a powerful Report Generator module for your SQL Tools application? Pick up a copy of Crystal Reports, or one of the other popular products that all work with SQL databases!

SQL is a complete database management language, with commands like SELECT, UPDATE, DELETE, INSERT ... and on and on. It contains dozens of built-in functions for building powerful, sophisticated database requests.

And with SQL Tools, SQL can become a sub-language of BASIC! Simply link SQL Tools into your program, and you can start using SQL as if it was part of the BASIC language!

Return to SQL Tools Main Page

Perfect Sync logo

UPDATED 30 JUL 2017    



About Us  Contact Us  Main Page
© Copyright 2006-2017 Perfect Sync, Inc. All rights reserved