INFO-LINK




Persistence Modeling in the UML


August 1999: Thinking Objectively: Persistence Modeling in the UML

The OMG should extend the existing UML class diagram definition to help you develop real-world, mission-critical applications using object and relational technologies.

One of the fundamental questions object developers face is how to make their objects persist—in other words, save them between sessions. Although the answer appears simple on the surface—you can use files, relational databases, object-relational databases, and even full-fledged objectbases—practice reveals that it is more difficult than it looks. In reality, your persistence strategy can be so complex that you inevitably need to model it. Luckily, you have the Unified Modeling Language (UML), the industry standard notation that is allegedly sufficient for modeling object-oriented software, so you should have no problem, right? Well, not quite.

The UML does not explicitly include a data model—more appropriately named a persistence model—in the object world. Although you can use class models to model an objectbase’s schema, as I showed in my Sept. and Oct. 1998 columns, they are not immediately appropriate for modeling schema of relational databases. The purists may argue that you should only use objectbases, but in reality, relational databases are a $7-billion market—which indicates that the majority of developers are using relational databases on the back end to store objects.

The problem is the object-relational impedance mismatch: the object paradigm and the relational paradigm are built on different principles. The object paradigm, on one hand, is based on the concept of object networks that have both data and behavior, networks that you traverse. Object technology employs concepts that are well supported by the UML such as classes, inheritance, polymorphism, and encapsulation. The relational paradigm, on the other hand, is based on collections of entities that only have data and rows of data that you combine, which you then process as you see fit. Relational technology employs concepts such as tables, columns, keys, relationships between tables, indices on tables, stored procedures, and data access maps. Unfortunately, though the UML doesn’t support these concepts very well, we still need to be able to model them. And persistence modeling is more complicated than merely applying a few stereotypes to class diagrams.

Proposing a Standard

The good news is that the UML supports the concept of a profile, the definition of a collection of enhancements that extend an existing diagram type to support a new purpose. For example, the UML 1.3, available for download from http://www.rational.com, includes a standard profile for modeling software development processes. I propose a profile that extends the existing class diagram definition to support persistence modeling, which should help to make the UML usable for organizations that are developing real-world, mission-critical applications using both object and relational technologies. I hope that the Object Management Group (OMG)’s UML working group take this proposal as input into the definition of a standard profile for persistence models.

Potential Modeling Stereotypes

Figure 1 shows an example of a logical persistence model. A logical persistence diagram is given the stereotype <<logical persistence diagram>>, one of the potential persistence modeling stereotypes described in the sidebar. Logical persistence models show the data entities your application will support, the data attributes of those entities, the relationships between the entities, and the candidate keys of the entities. You model entities using standard UML class symbols with the stereotype <<entity>>, although this stereotype is redundant if your diagram is identified as a logical persistence diagram. Entity attributes are modeled identically to the class attributes, with the exception that they always have public visibility, depicted with a plus sign (+) in the UML. Relationships between entities are modeled as either associations or aggregation associations, as you would expect, and subtyping relationships are indicated using inheritance.

Figure 1

Candidate keys, and keys in general, are one of several concepts you will find difficult to model using the UML. A key is a collection of one or more attributes or columns whose values uniquely identify a row (which is the relational equivalent of an object’s data aspects). The problem is that any given entity can have zero or more natural keys. A natural key is a key whose attributes currently exist in the entity, whereas an artificial key has had one or more attributes introduced. You should mark the columns that form an entity’s candidate key, as you can see with ResidentialCustomer in Figure 1, using the combination of the stereotype <<candidate key>> and a constraint indicating which candidate key or keys the column belongs to. Figure 1 shows constraints in the format {ck = #}, although {candidate key number = #} may be more appropriate—one of many issues an official standard profile would need to address.

Having described how to use the UML for logical persistence modeling, it’s unfortunate that logical persistence models offer little if any benefit to your software development efforts. The problem is that logical persistence models add nothing useful that isn’t already documented in your class model. In fact, the only thing that logical persistence models show that standard class models don’t is candidate keys, and frankly, modeling candidate keys is a bad idea. Experience has shown that natural keys are one of the greatest mistakes of relational theory—they are out of your control and subject to change because they have business meaning. Keys form the greatest single source of coupling in relational databases, and when they change, those changes propagate throughout your model. It is good practice to reduce coupling within your design; therefore, you want to avoid using keys with business meaning. The implication is that you really don’t want to model candidate keys.

Tables, Columns, and Relationships

Figure 2 shows an example of a physical persistence model, which describes a relational database’s schema. As you would expect, the stereotype <<physical persistence diagram>> should be applied to the UML class diagram. For tables, you should use standard class symbols with the <<table>> stereotype applied. Table columns are modeled as public attributes and the ANSI SQL type of the column (Char, Number, and so forth) should be indicated following the standard UML approach. You model simple relationships between tables as associations (relational databases don’t have the concept of aggregation or subtyping and inheritance, so you would not apply these symbols to this type of diagram).

Figure 2

Figure 3 shows how to model views, alternative access paths to one or more tables, modeled as class symbols with the stereotype <<view>>. As you would expect, views have UML dependencies on the tables that they provide access to, and in many ways, are the relational equivalent of facades from the object world. Indices, shown in Figure 3, are modeled as class symbols with a <<primary index>> or <<secondary index>> stereotype. You use indices to implement the primary and secondary keys, if any, in a relational database. A primary key is the preferred access method for a table, whereas secondary keys provide quick access via alternative paths. Indices are interesting because their attributes, which all have implementation visibility, imply the attributes that form the primary and secondary keys respectively of a given table. Although you could add the optional stereotypes <<primary key>> and <<secondary key>>, this information would merely clutter your diagram with redundant information.

Figure 3

Foreign keys, columns that maintain the relationship between the rows contained in one table to those stored in another, are modeled using the <<foreign key>> stereotype, as shown in Figure 3. Foreign keys are also clunky because they are effectively columns that depend on columns in another table (either the primary key columns or one of the secondary key columns). To model this properly, you should have a dependency relationship between the two columns, although this quickly clutters up your diagrams. You could potentially indicate this type of dependency using a constraint, but I suspect this would unnecessarily complicate your models. The point is, this is yet another issue that should be addressed by a standard profile for a UML persistence model. For now, you should choose one alternative—I recommend the stereotype—and stick to it.

Figure 4 shows you can model triggers—functions that are automatically invoked when a certain action is performed on a table—in a straightforward manner. You can model them as operations on a table using the <<trigger>> stereotype and a constraint indicating when the trigger should be invoked. Although you could use operation names such as insert(), delete(), and update() to indicate when the triggers would be invoked, the trigger-naming strategy is often specific to the database vendor, so you really want to use constraints instead. One of my general design philosophies is that you can count on having to port your database over time, therefore you want to avoid database vendor-specific features whenever possible (even if you only need to upgrade to a new version of the same database that is still a port). Triggers are modeled with private visibility, depicted with a minus sign (-) in the UML, because they shouldn’t be invoked directly.

Figure 4

Stored procedures, which are operations defined within a relational database, are also clunky to model in the UML, because they don’t map well to the object paradigm. Figure 4 depicts a stored procedure as a class with one operation marked with the <<stored procedure>> stereotype. A stored procedure is conceptually similar to a utility class, which implements one or more functions that are often casually related to one another at best, although it doesn’t have a name and only implements one operation. You want to use a single class symbol per stored procedure, because you need the “notational real estate” to model the dependencies that the stored procedure has to the tables as well as the views it accesses to fulfill its responsibilities. Due to the large number of dependencies that stored procedures may have, and because any given stored procedure may implement a defined interface (modeled by the lollipop symbol), using one utility class to model all the stored procedures in a relational database quickly becomes unwieldy. You may choose to use the standard UML package symbol to aggregate similar stored procedures in your persistence model; in fact, some database vendors actually support this concept in their products.

Here, I have focused solely on the static aspect of persistence modeling rather than the dynamic nature shown in data access maps, potentially modeled via UML sequence diagrams or collaboration diagrams. Persistence modeling is a complex endeavor that has been ignored far too long within the object industry. It is clear to me, and to the majority of developers in this field, that the OMG’s UML working group has dropped the ball on this issue. There is more to persistence models than adding a few stereotypes to UML class diagrams. It’s time the UML community started addressing topics that are critical to the majority of object technology projects today, such as persistence modeling and user interface modeling. In theory, the UML is complete, but in practice it still has a way to go. Hopefully the OMG will choose to finish the good job it has started.

Potential Stereotypes for a UML Persistence Model

<<artificial>> Apply to a column in a physical persistence model, such as a total column in an invoice table, that has been added as the result of denormalization.

<<associative table>> Apply to a table that is introduced to resolve a many-to-many relationship between tables.

<<candidate key>> Apply to an attribute in a logical persistence model to mark it as part of a candidate key for an entity. For entities with several candidate keys you will need to add a constraint to indicate which key it is part of.

<<entity>> Apply to indicate an entity in a logical persistence model. This stereotype is redundant if the diagram is marked with <<logical persistence diagram>>.

<<foreign key>> Apply to a column in a table to indicate that it is a foreign key in another table.

<<logical persistence diagram>> Apply to a UML class diagram to indicate that it represents a logical persistence diagram.

<<oid>> Apply to a column in a table to indicate that it is a persistent object identifier, an artificial/surrogate key that has no business meaning.

<<physical persistence diagram>> Apply to a UML class diagram to indicate that it represents a physical persistence diagram.

<<primary index>> Apply to a class to indicate that it represents the primary physical index for a given table.

<<primary key>> Apply to a column to indicate that it forms part of the primary key for that table. This stereotype is redundant if the primary index is modeled.

<<random access file>> Apply to a class to represent a random access file approach to storage.

<<secondary index>> Apply to a class to indicate that it represents one of the secondary physical index for a given table.

<<secondary key >> Apply to a column to indicate that it forms part of a secondary key for that table. This stereotype is redundant if the secondary index is modeled. For tables with several secondary keys you will need to add a constraint to indicate which key it is part of.

<<sequential file>> Apply to a class to represent a sequential file approach to storage.

<<stored procedure>> Apply to class to indicate that it models a single stored procedure.

<<table>> Apply to a class to indicate that it represents a physical database table. This stereotype is redundant if the diagram is marked with <<physical persistence diagram>>.

<<trigger>> Apply to an operation to indicate that it models a trigger on the table. You will need to indicate the type of trigger with a constraint.

<<view>> Apply to a class to indicate that it represents a view within a database.


Around the Web

An Events Based Algorithm for Distributing Concurrent Tasks on Multi-Core Architectures

Here's a programming model which enables scalable parallel performance on multi-core shared memory architectures.

Quick Read

Swarm: A True Distributed Programming Language

The Swarm prototype is a simple stack-based language, akin to a primitive version of the Java bytecode interpreter.

Quick Read

Key Software Development Trends

Several trends are emerging within the area of software development. Here are some of the most important trends S. Somasegar has been thinking about recently.

Quick Read

Understanding Parallel Performance

Understanding parallel performance. How do you know when good is good enough?

Quick Read

Short and Tweet: Experiments on Recommending Content from Information Streams

The authors used 12 algorithms to study the URL recommendation on Twitter as a means of better directing attention in information streams.

Quick Read



Video

Forty finalists will gather in Washington, D.C. from March 11-16 to compete for $630,000 in awards.; DDJ; Intel; science; Dr. Dobb's talks with Commonsware's Mark Murphy about what's involved in developing software for the Android operating system; Android; apple; DDJ; tablet development; The new method uses analytics technology developed by the Mayo and IBM collaboration, Medical Imaging Informatics Innovation Center, and has proven a 95 percent accuracy rate in detecting aneurysm.; Algorithm; DDJ; diagnostics; ibm; imaging; T-Mobile USA is enabling phone calls to Haiti without charges for international long distance through January 31 and retroactive to the earthquake on January 12; DDJ; mobile; wireless; Al Williams gives you a demor of One-Der: The One Instruction CPU; DDJ; At the 2010 International Consumer Electronics Show, the auto industry's first working smartphone application was unveiled; DDJ; mobile; The Bluetooth Special Interest Group (SIG) has announced the adoption of BLUETOOTH low energy wireless technology.; bluetooth; DDJ; wireless; IBM has unveiled its list of five innovations that have the potential to change how people live, work and play in cities around the world over the next five to ten years; DDJ; ibm; TeliaSonera's LTE mobile broadband commercial network in Stockholm is now the fastest and largest in the world.; broadband; DDJ; ericsson; mobile; Google has introduced, google Goggles, a visual search application on Android devices that allows users to search for objects using images rather than words; Android; DDJ; google; mobile; Visual Search Applications; Dr. Dobb's talks with David Intersimone, Vice President of Developer Relations and Chief Evangelist at Embarcadero Technologies, about RAD Studio 2010, SQL optimization and his reflections on the software industry.; database programming; DDJ; sql; Researchers from Intel Labs have created an experimental, 48-core Intel processor or "single-chip cloud computer."; cloud computing; DDJ; Intel; multicore; parallelism; The Large Hadron Collider will produce roughly 15 million gigabytes of data annually, to be accessed by a distributed computing and data storage infrastructure called the LHC Computing Grid.; CERN; DDJ; grid computing; physics; A mobile handheld device designed to let users can point, shoot and listen to printed text.; DDJ; Intel; mobile; Ericsson has become the first vendor to prove end to end interoperability in TD-LTE, another standard of 4G radio technologies designed to increase the capacity and speed of mobile telephone networks.; DDJ; ericsson; mobile; TD-LTE; According to a recent study, 80 percent of US respondents feel there are unspoken rules about mobile technology usage, and approximately 69 percent agreed that violations of these unspoken mobile manners are unacceptable.; DDJ; Intel; mobile; IBM and Canonical will introduce a software package for netbooks and other thin client devices in Africa. This is the first cloud- and premise-based Linux netbook software package offered by IBM and Canonical.; cloud computing; DDJ; ibm; His unprecedented ability to manipulate individual atoms signaled a quantum leap forward in in nanoscience experimentation and heralded in the age of nanotechnology.; DDJ; ibm; nanotechnology; IBM honored for its invention of the Blue Gene family of supercomputers. Adobe founders also recognized.; adobe; DDJ; ibm; Former U.S. President Bill Clinton addressed thousands of online entrepreneurs from around the world gathered for the third APEC Business Advisory Council SME Summit in Hangzhou, China.; DDJ; e-business; With free cooling for several months a year, Sweden is an ideal location for cost-efficient data centers.; data centers; DDJ; PNC Bank introduces a new mobile App for the iPhone and iPod touch that provides Virtual Wallet customers with a high-def view of their money while on the go.; DDJ; iphone; The Swedish LTE site will be part of a commercial network scheduled to go live in 2010, bringing data rates far above what is possible in today's mobile broadband networks.; DDJ; ericsson; mobile broadband; Nanotechnology advancement could lead to smaller, faster, more energy efficient computer chips.; circuit boards; DDJ; nanotech; semiconductor; Dr Dobbs talks with with Claudia Backus, Senior Director of Ecosystem Programs at Motorola, regarding the company's recently released MotoDEV Studio for their Android-powered phones.; Android; DDJ; mobile; motodev; The Extremadura Regional Government of Spain and IBM have launched an electronic prescription system in 680 pharmacies in western Spain.; DDJ; ibm; Ericsson to Acquire Majority of Nortel's North American Wireless Business; DDJ; ericsson; mobile; telecom; Nintendo's Wii Sports Resort is an immersive, expansive active-play game that includes a dozen resort-themed activities.; DDJ; nintendo; video games; OnStar can remotely send a signal to the electronic system in the subscriber's stolen vehicle and the vehicle will not be able to be re-started.; cellular; DDJ; wireless; In celebration of the historic Apollo Moon landing, Google has released Moon in Google Earth.; DDJ; google; Ericsson has been awarded contracts with the three telecom operators in China to provide fixed broadband access.; broadband; DDJ; mobile; tv; wireless; Dr. Dobb's talks with Adobe's Adam Lehman about the upcoming release of ColdFusion specifically optimized for Flash and Adobe AIR platform delivery.; adobe; ColdFusion; DDJ; eclipse; Companies team to develop computing device and chipset architectures that will combine the performance of powerful computers with high-bandwidth mobile broadband communications and ubiquitous Internet connectivity.; broadband; DDJ; Intel; mobile; nokia; Adobe Systems and HTC recently announced that the new HTC Hero will be the first Android phone to ship with support for Adobe Flash Platform technology.; adobe; Android; cell phones; DDJ; flash; mobile; mobility; 3.2 million Euros awarded across eight prize categorie recognizing world-class scientific research and artistic creation.; DDJ; A parody of Paul Simon's "50 Ways to Leave Your Lover," but for software security nerds.; DDJ; sql; Dr. Dobb's Mike Riley talks with Jim Manias of Advanced Systems Concepts.  In this conversation, Jim discusses the new ActiveBatch 7 and how it can provide significant productivity gains for application developers and business process owners alike.; ActiveBatch; DDJ; Sun cofounder Scott McNealy and Oracle CEO Larry Ellison discussed Java's role in computing. Sun has also released OpenSolaris 2009.06.; DDJ; java; opensolaris; oracle; sun; Spotlight on NATO's centre of excellence on cyber defense in Tallinn, Estonia.; cyber defense; DDJ; nework security; security; Create Data Access Layers in ASP.NET; DDJ; In this demonstration you will learn how to layout a WPF application. We will explore the major layout panels that come with WPF, contrasting them with each other and describing when to use each.; DDJ; web development; windows; wpf; The Intel Foundation has announced the top winners of the Intel International Science and Engineering Fair; DDJ; Intel; News; science; Matt Hester demonstrates Internet Explorer’s 8 new feature Selectors API for utilizing CSS selectors for quick and easy element lookups.; DDJ; IE8; microsoft; windows; The NATO Virtual Silk Highway provides affordable, high-speed Internet access via satellite to the academic communities of the Caucasus and Central Asia.; DDJ; On a Windows Mobile device, applications are typically not closed down, but they stay in the background. Maarten Struys shows you a simple way to preserve battery power inside your own applications.; DDJ; microsoft; power consumption; windows; Windows Mobile Devices; Cadillac is now offering wireless Internet access with its CTS sedan.; DDJ; wireless broadband; By default, Windows Mobile Standard (Smartphone) applications launched from Visual Studio are not accessible on the device/emulator once they are minimized. In this video, Jim Wilson demonstrates two simple techniques to solve the problem.; DDJ; microsoft; smartphone; VIsual Studio; Mike Riley talks with the brass from Everypoint, creators of the NEMO mobile application development platform.; DDJ; Developers; development environments; mobile applications; Symmetric and asymmetric encryption algorithms, the SHA256 hash encryption algorithms, and how to implement in a simple application using Microsoft's Azure Services Platform.; Azure; DDJ; encryption; microsoft; security; windows; T-Mobile has introduced the Sidekick LX, which features enhanced video capability.; DDJ; Mobile Smartphone; Bluetooth 3.0 offers speedier transmission of large amounts of video, music and photos between devices wirelessly.; bluetooth; DDJ; mobile networks; wireless broadband; Cities around the world are battling with stressed transportation networks, so IBM has announced plans for three new smart rail projects in China, Taiwan and The Netherlands.; DDJ; ibm; ILOG; CASMOBOT is a Nintendo Wii remote controlled slope lawn mower.; DDJ; Denmark; nintendo wii; research; robotics; Project ensures documents, images, video and other Internet-based data growing at over 100 terabytes per month will live on for future generations; data storage; DDJ; history; Intenet; research; Sun Microsystems; Dr. Dobb's talks with Dave McAllister, Director of Standards and Open Source for Adobe, about the Open Screen Project.; adobe; DDJ; Open Screen Project; open source; The Facebook Connect SDK provides the code to let third-party developers embed hooks into their applications so users can connect to their Facebook accounts and exchange information using iPhone apps.; apple; cocoa; DDJ; Facebook; iphone; Mars in Google Earth Updated; DDJ; google; google earth; Google mars; red planet; The Sun Cloud is built on the Sun Open Cloud Platform that leverages the best in world-class open source technologies. The Sun Open Cloud Platform brings together Java, MySQL, OpenSolaris and OpenStorage.; cloud computing; DDJ; java; open solaris; sun; DDJ; High School; Intel; science; ILOG Elixir is a suite of professional user interface controls that gives developers a rich collection of innovative and interactive data display components for Adobe Flex and Adobe Air.; adobe; air; DDJ; elixir; flash; flex; ILOG; The inaugural San Diego Science Festival being held this month is touted as one of the largest multicultural, multigenerational, multidisciplinary celebrations of science ever seen on the West Coast; DDJ; lockheed; News; science; IBM has announced Innov8 version 2, a new version of its serious game that helps students and professionals hone their business and technology skills in a compelling, familiar video game format.; DDJ; ibm; serious games; Swiss Automobile Visionary Frank M. Rinderknecht builds a concept car with adaptive energy concept and iPhone controls.; apple; Concept Car; DDJ; iphone; j; siemens; Two-Year Plan to Focus on 32 Nanometer Manufacturing Technology; 32 nanometer technology; chip; cpu; DDJ; gpu; Intel; manufacturing; Nehalem; Westmere; New version features ocean layer, historical imagery, and more.; DDJ; google; Dr. Dobb's talks with Marty Alchin, author of "Pro Django" about his book and the deep internals of the Django framework.; DDJ; Django; A new content-authoring solution for learning professionals; adobe; DDJ; toolkits; web authoring; In a Second Life setting, Danny Coward discusses Java FX with Dr. Dobb's Jon Erickson.; DDJ; java; JavaFX; sun; The Core i7 processor is the first member of a new family of Nehalem processor designs with new technologies that boost performance on demand.; chip; DDJ; Intel; processors; Dan Diephouse, creator of XFire, a high-performance open-source SOAP framework (which became the Apache CXF project), shares the five common mistakes in SOA governance and insight about the Apache CXF and Mule RESTpack development environments.; apache; Apache CXF; DDJ; mule; open source; soa; soap; Xfire; Adrian Kaehler and Gary Bradski discuss the Open Computer Vision Library (sourceforge.net/projects/opencvlibrary/) and their book "Learning OpenCV".; DDJ; Open Computer Vision Library; OpenCV; In the first part of this two-part interview, Stephen Wolfram reflects on the 20-year anniversary of Wolfram Research.; DDJ; Mathematica; Mathematics; science; In the second part of this two-part interview, Stephen Wolfram discusses his book "A New Kind of Science."; DDJ; Mathematica; Mathematics; science; Nick Hodges talks about Delphi 2009, a RAD tool for Windows, and Delphi Prism, a database engine for Windows, Mac OS X, and Linux.; DDJ; delphi; RAD; windows; Dr. Dobb's talks with Tony Lombardo, lead Technical Evangelist at Infragistics, about all new UI tools for Windows and .NET.; .net; DDJ; silverlight; ui; windows; wpf; Dr. Dobb's talks with Eric Schulz about his International Mathematica User's Conference 2008 presentation on the Mathematica Essentials Palette and the future digital educational material; DDJ; Mathematica; Mathematics; Dr. Dobb's talks with ActiveState's Trent Mick about the recently released Komodo IDE 5.0.; DDJ; ide; open source; Dr. Dobb's talks with Continuity Logic's Kris Carlson about "Why We Die: Simulation of the Evolution of Senescence" and why he programs with Mathematica's functional programming language.; DDJ; functional programming; Mathematica; simulation; Ericsson collaborates with Intel; DDJ; ericsson; Intel; Mobile technology; Dr. Dobb's talks with Schoeller Porter about the grid and cloud versions of Mathematica; clouds; DDJ; Grid; Mathematica; Dr Dobb's interviews Yehuda Katz, maintainer of the Merb project, about the advantages this highly optimized Ruby on Rails alternative offers to web application developers.; DDJ; Ruby on Rails; Dr. Dobb's talks with Thomas Roman, Professor of Mathematics at Central Connecticut State University, about "Mathematica Visualization in a Theoretical Physics Problem - Negative Energy in an Unusual Quantum State."; DDJ; Mathematica; physics; quantum; science; The Forbidden City: Beyond Space & Time is a fully immersive, three-dimensional virtual world that recreates a visceral sense of space and time.; Blade Server; China; DDJ; ibm; linux; mac; online; virtual world; windows; Dr. Dobb's interviews open source luminary Miguel de Icaza about his latest milestone of achieving Microsoft .NET 2.0 Framework compatibility with the Mono Project .; DDJ; Dr. Dobb/s interviews Paul Kimmel, author of "LINQ Unleashed for C#", about Microsoft's new query technology that lets developers poll any information from any data source regardless of location or structure. I; C#; DDJ; Dr. Dobb's; LINQ; microsoft; It takes a supercomputer to build a super car. ; DDJ; HPC; simulation; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Perl for Windows Mobile devices.; DDJ; mobile devices; perl; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Python CE which is optimized for Windows Mobile devices.; DDJ; mobile devices; python; windows; Dr. Dobb's shows how to install and execute cross-platform scripting languages on the Windows Mobile platform. In this installment, Mike Riley examines Ruby for Windows Mobile devices.; DDJ; mobile devices; ruby; windows; Young participants at ITU TELECOM ASIA 2008 in Bangkok, Thailand received free laptops as part of ITU’s initiative to promote affordable devices to increase access to information and communication technologies.; communication; DDJ; itu; Currently technical strategist to Microsoft's Chief Software Architect, Rebecca Norlander has had a tremendous impact on Excel, Internet Explorer, Windows XP SP2, and Windows Vista Security. ; DDJ; microsoft; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 1 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 2 of 3.; DDJ; programming; software development; Contributing authors to the book "Beautiful Code" got together at Dr. Dobb's SD West Conference in March, 2008. Part 3 of 3.; DDJ; programming; software development; Anders Hejlsberg discusses C#, Turbo Pascal, and what it means to design a programming language. ; C#; DDJ; microsoft; Turbo Pascal; Solar powered laptops given to youths at ITU Asia 2008.; DDJ; News; telecommunications; IBM breakthrough stands to impact future direction of information technology.; DDJ; Mike Riley spoke to ActiveState's Jeff Hobbes about the new features in Tcl Dev Kit and Perl Dev Kit including the code coverage and hot-spot analysis tool and Mac OSX support.; DDJ; Tim O'Reilly addressed the OSCON convention in his Wednesday keynote titled "Degrees of Freedom, Open Source in the Wed 2.0 Era.; DDJ;


Enabling People and Organizations to Harness the Transformative Power of Technology