Other News

Community

Using Pygments from XSLT

(Norman Walsh) Syntax highlighting source code listings can make them easier to read (it certainly makes them prettier). Pygments is an excellent syntax highlighter. It’s a python tool that can transform source code listings into nice, clean HTML using s and class attributes.

Community

Moving Beyond Enumerations

(Steven Smith) Enumerations in C# and .NET are value types with a set of related named constants. Using enumerations often results in more readable code, and can help to ensure developers choose appropriate values by limiting possible options to those defined in the enum.

Community

Mapping XMLTYPE

(Shaun Smith) A recent posting on the TopLink Forum made it clear that previous descriptions of how to map a JPA entity attribute of type org.w3c.dom.Document to an Oracle database XMLTYPE column didn’t provide enough information for schema (DDL) generation.

Community

Invisible Indexes in Oracle 11g

(Siba Prasad) Always wanted this – the ability to create an index on production without impacting the queries being fired by application but at the same time test the impact an index creation can cause. Invisible indexes are useful alternative to making an index unusable or to drop it.