" /> Linux Web Developer: September 2006 Archives

« August 2006 | Main | February 2007 »

September 26, 2006

Provide key features in a Web-based application


Provide key features in a Web-based application
Any enterprise-level application must have certain key abilities. For a Web-based application that might have worldwide users, it is crucial to provide impeccable scalability, availability, maintainability, and reliability. In this article, learn to address these key features, plus some techniques for devising metrics. You'll also find tips to consider during development to ensure your application will have the best of the abilities.

Programming the Perl DBI

Programming the Perl DBI One of the greatest strengths of the Perl programming language is its ability to manipulate large amounts of data. Database programming is therefore a natural fit for Perl, not only for business applications but also for CGI-based web and intranet applications. The primary interface for database programming in Perl is DBI. DBI is a database-independent package that provides a consistent set of routines regardless of what database product you use--Oracle, Sybase, Ingres, Informix, you name it. The design of DBI is to separate the actual database drivers (DBDs) from the programmer's API, so any DBI program can work with any database, or even with multiple databases by different vendors simultaneously. Programming the Perl DBI is coauthored by Alligator Descartes, one of the most active members of the DBI community, and by Tim Bunce, the inventor of DBI. For the uninitiated, the book explains the architecture of DBI and shows you how to write DBI-based programs. For the experienced DBI dabbler, this book reveals DBI's nuances and the peculiarities of each individual DBD. The book includes:

  • An introduction to DBI and its design
  • How to construct queries and bind parameters
  • Working with database, driver, and statement handles
  • Debugging techniques
  • Coverage of each existing DBD
  • A complete reference to DBI
This is the definitive book for database programming in Perl.
Customer Review: pretty good book, but so is the CPAN documentation
This is a (the definitive) book on Perl DBI. I swapped book-for-book with a former co-worker for this. I keep it in the office for the newbies.

If you're already a pro at PERL, you should be able to get by with just the CPAN documentation. However, if your employer is footing the bill, get it. :-)

However if you're new to PERL and need to use DBI, get it.

Very nice tips and tricks you can pick up, even a few for the pros.


Technorati Tags:

Mastering Ajax, Part 6: Build DOM-based Web applications


Mastering Ajax, Part 6: Build DOM-based Web applications
Continue to explore how DOM programming fits into interactive Ajax applications as Brett McLaughlin completes his trilogy of articles on DOM programming with a DOM application in practice.

Introduction to IP Multimedia Subsystem (IMS), Part 1: SOA Parlay X Web services


Introduction to IP Multimedia Subsystem (IMS), Part 1: SOA Parlay X Web services
IP Multimedia Subsystem (IMS) is the "next big thing" in the Telecom industry. This 3rd Generation Partnership Project (3GPP) standardized Next Generation Network (NGN) architecture integrates the services provided by the long-existing IP network with the mobility of portable digital devices such as your 3G cellular phone. In this article you'll see how to create a useful telecom service using IMS SOA ParlayX Web services.

Open BIOSes for Linux


Open BIOSes for Linux
On many systems, a large portion of boot time goes into providing legacy support for MS-DOS. Various projects, including LinuxBIOS and Open Firmware, are trying to replace the proprietary BIOS systems with streamlined pieces of code able to do only what is necessary to get a Linux kernel loaded and running. This article gives a brief overview of the field.

SQL and XQuery tutorial for IBM DB2, Part 6: Data Definition Language and Data Control Language


SQL and XQuery tutorial for IBM DB2, Part 6: Data Definition Language and Data Control Language
This tutorial, Part 6 of the SQL & XQuery tutorial for IBM DB2 series, expands on Data Manipulation Language (DML) and introduces Data Definition Language (DDL) and Data Control Language (DCL). It also discusses SQL statements other than SELECT.

Easy database queries with JSTL SQL actions


Easy database queries with JSTL SQL actions
Author Meenakshi G. Khanna shows you how to use the JSTL 1.1 SQL tag library to incorporate database operations into your JSPs.