Too Jewish with Rabbi Cohon

Should ORMs Insulate Developers from SQL?

I’ve been sick the past few days, so I have been hitting the “Stumble” button a lot on my laptop. Last night I ran across a very interesting blog post by Daniel Spiewak on his Code Commit blog:
This is a question which is fundamental to any ORM design.  And really from a philosophical standpoint, how [...]

unable to create a SQL UDF in Sybase ASE using a case statement

CREATE FUNCTION ok (@BOOLEAN BIT)
RETURNS VARCHAR(2000) AS
DECLARE @output_string VARCHAR(2000)
SELECT @output_string = CASE WHEN @BOOLEAN = 1 THEN "" ELSE "not " END
SET @output_string = @output_string + "ok"
RETURN @output_string
END
Msg 156, Level 15, State 2
Server ‘DBADEV1′, Procedure ‘ok’, Line 7
Incorrect syntax near the keyword ‘end’.
I’m trying to write an ASE implementation of TAP. A rudimentary TAP [...]

FW: Learn to Love SQL Development Webcast (Sybase Workspace)

From the Sybase Workspace 2.0 team:
Thursday, February 14, 2008
1:00 pm EDT / 10:00 am PDT
Join us on Valentine’s Day and you will learn how to:

Visually debug stored procedures and triggers
Visually create and edit tables, stored procedures and events
Navigate and manipulate database objects in the enterprise
Export and import database objects and services to database server

Don’t forget [...]

How to colorize your code using Perl and Syntax::Highlight::Engine::Kate

Yesterday I was scratching my head on how to send an email to myself when an application failed or a certain error occurred. You see, I wanted to be able to read an email on my crackberry (Blackberry) that showed that a problem occurred and more importantly, I wanted the error messages and the [...]