This application tracks Delphi project with a MySQL database. When the user double clicks on the project grid the IDE is launched.
The data entry portion of the application is depicted below.
The data structure is listed here.
[codesyntax lang=”mysql”]
-- phpMyAdmin SQL Dump -- version 4.6.4 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Sep 08, 2016 at 01:02 AM -- Server version: 5.6.17 -- PHP Version: 5.5.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Database: `dcp` -- -- -------------------------------------------------------- -- -- Table structure for table `dp` -- CREATE TABLE `dp` ( `id` int(11) NOT NULL, `proj` varchar(150) NOT NULL, `sdes` varchar(150) NOT NULL, `ddes` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `dp` -- ALTER TABLE `dp` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `dp` -- ALTER TABLE `dp` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
[/codesyntax]
A 32 bit executable program may be downloaded by clicking here.
A 64 bit executable program may be downloaded by clicking here.
The component documentation can be found by clicking here.
The source code may be found by clicking here.
Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.