Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 5 of 5 total
Thread Can someone confirm this
Fri, Jul 24 2015 3:17 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Before I report this as a bug can someone confirm it please.

I thought I'd see if I could help Steve with his phone number formatting question so I created a table

CREATE TABLE "Phone"
(
"Entered" VARCHAR(20) COLLATE "ANSI_CI",
"Modded" VARCHAR(20) COLLATE "ANSI_CI" COMPUTED ALWAYS AS Entered
)


To start with I thought I'd just use Entered as the computation just to get something to work with.

Opened the table in EDBManager and entered 1 into Entered - wallop

---------------------------
ElevateDB Manager
---------------------------
Access violation at address 005ECF95 in module 'edbmgr.exe'. Read of address 00000040.
---------------------------
OK  
---------------------------

Using 2.19b2

Roy Lambert
Fri, Jul 24 2015 8:39 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

If I alter the table to



CREATE TABLE "Phone"
(
"Entered" VARCHAR(20) COLLATE "ANSI_CI",
"Modded" VARCHAR(20) COLLATE "ANSI_CI" COMPUTED ALWAYS AS COALESCE(Entered,'')
)

It works but I don't think I should have to do that.

Roy Lambert
Fri, Jul 24 2015 1:44 PMPermanent Link

Terry Swiers

Hi Roy,

> Before I report this as a bug can someone confirm it please.

I can reproduce this here on my side as well.

---------------------------------------
Terry Swiers
Millennium Software, Inc.
---------------------------------------


Fri, Jul 24 2015 4:18 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< To start with I thought I'd just use Entered as the computation just to get something to work with. >>

That was the issue - EDB isn't handling a single column reference properly.  Believe it or not, it's never been tried, apparently. Smile

Tim Young
Elevate Software
www.elevatesoft.com
Sat, Jul 25 2015 7:46 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim


><< To start with I thought I'd just use Entered as the computation just to get something to work with. >>
>
>That was the issue - EDB isn't handling a single column reference properly. Believe it or not, it's never been tried, apparently. Smile

Oh yes I do believe it. The number of times I've been bitten by the "nobody in their right minds would...." . Lets just say I'm glad its not a midge doing the biting.

Roy
Image