Saturday, March 21, 2020

A Synopsis of the Movie 12 Monkeys Essays

A Synopsis of the Movie 12 Monkeys Essays A Synopsis of the Movie 12 Monkeys Paper A Synopsis of the Movie 12 Monkeys Paper The film 12 Monkeys failed greatly to live up to the hype one would think follows it. With a slew of highly touted actors and actress, one would think of it as a possible blockbuster hit. It falls short of the potential that seemed to swirl around it. Bruce Willis plays James Cole, a convicted criminal living in a future apocalyptic world. A deadly virus was released to the world in December 1996, and Cole is expected to go back in time and find a possible cure for it before it is spread throughout the world. The psychological stress that would overcome a person from going back and forth throughout time would be great. Emotions would be so overwhelming, and Bruce Willis failed to portray this stress. He’s become typecasted as an action hero and it is hard to view him in any other role. He was a known actor at the time, but had still yet to shake the run and gun image from the Die Hard movies that brought him to glory. He failed to bring his emotions to the forefront. The viewer was unable to feel the great emotional stress that would have overwhelmed a character in Cole’s position. Brad Pitt plays Jeffrey Goines, a fellow mental health patient at the institution that Cole is put into. He, unlike Willis, played his role perfectly. He was so deep into his role that the viewer forgets he is watching an actor. The insanity is real, and every aspect of his role is flawless. From his body language to the look in his eyes, the role is acted perfectly. It is this aspect of his character, the insanity, which is missing from Willis’s. 12 Monkeys is a psychological thriller trying to play itself off as a generic action movie. By casting Bruce Willis, the production crew was making an effort bring in a demographic of moviegoers that wouldn’t normally have gone to see the movie. They tried to please too many people and as a result ended up disappointing a majority of their viewers. The ending of the movie was perfect- for a psychological thriller.

Thursday, March 5, 2020

Using dbExpress in Delphi Database Applications

Using dbExpress in Delphi Database Applications One of the strengths of Delphi is the support for many databases using several data access technologies: the BDE, dbExpress, InterBase Express, ADO, Borland Data Providers for .NET, to name a few. What is dbExpress? One of the data connectivity options in Delphi is dbExpress. In short, dbExpress is a light-weight, extensible, cross-platform, high-performance mechanism for accessing data from SQL servers. dbExpress provides connectivity to databases for the Windows, .NET and Linux (using Kylix) platforms.Initially designed to replace the BDE, dbExpress (introduced in Delphi 6), allows you to access different servers - mySQL, Interbase, Oracle, MS SQL Server, Informix.dbExpress is extensible, in that it is possible for third-party developers to write their own dbExpress drivers for various databases. One of the most significant features of dbExpress lies in the fact that it accesses databases using unidirectional datasets. Unidirectional datasets do not buffer data in memory   such a dataset cannot be displayed in a DBGrid. To build a user interface using dbExpress you will need to use two more components: TDataSetProvider and TClientDataSet. How to Use dbExpress Heres a collection of tutorials and articles on building database applications using dbExpress: dbExpress Draft SpecificationAn early dbExpress specifications draft. Worth a read. Introduction to ClientDataSets and dbExpressA TClientDataset is a part of any dbExpress applications. This paper introduces dbExpress and the power of ClientDataSets to people who have been using the BDE and are afraid to migrate. Additional dbExpress Driver OptionsA list of third-party drivers available for dbExpress Migrating BDE Applications to dbExpressThis PDF goes into extensive detail on issues you may face when migrating applications from BDE components to dbExpress components. It also provides information on performing the migration. Create a Reusable Component to Connect Delphi 7 to DB2 with dbExpressThis article shows you how to use IBM DB2 as the database for applications written with Borland Delphi 7 Studio and dbExpress. Specific topics include how to connect the seven dbExpress components to DB2 and use them to build visual forms on top of database tables.