Thoughts from Dan Miser RSS 2.0
 Monday, January 16, 2006
As I alluded to in an earlier post, I had troubles using the nz() function from a TADODataset in Delphi. Take the following SQL, which works just fine in Access itself:


SELECT DISTINCT ContestId, Hole, nz(Score,'MISSING')
FROM tblContestDetails

This query behaves like isnull() in MSSQL where if the Score column is null, it returns the value 'MISSING' instead. If Score isn't null, then the value of Score would be returned. To me, this syntax is very intuitive, corresponds well with other DBMS' isnull() functions, and clearly captures the intent of what you're trying to do in once concise statement. However, if you put this query in a TADODataset and try to open that dataset, you will be greeted with the following error: "Undefined function 'nz' in expression.". If you need this type of substitution in Access when executing from Delphi, I found the simplest way to get around this is to use the iif() and isnull() functions. It's more verbose, and I don't like it as much, but when you need things to work, some times you have to live with things that aren't aesthetically pleasing. The SQL above translates to this:


SELECT DISTINCT ContestId, Hole, iif(isnull(Score),'MISSING', Score)
FROM tblContestDetails
Monday, January 16, 2006 9:12:00 AM (Central Standard Time, UTC-06:00)  #    Comments [5] -
Delphi
Tracked by:
http://9np-information.info/79065331/index.html [Pingback]
http://9ng-information.info/30465174/index.html [Pingback]
http://9ne-information.info/11620345/index.html [Pingback]
http://9nn-information.info/09177368/index.html [Pingback]
http://9nv-information.info/42700593/index.html [Pingback]
http://9nb-information.info/35124514/index.html [Pingback]
http://9nq-information.info/27131041/index.html [Pingback]
http://9nw-information.info/92106675/index.html [Pingback]
http://9nh-information.info/54724631/index.html [Pingback]
http://9qg-information.info/55541280/iwc-orologio-concessionaria.html [Pingback]
http://9qe-information.info/03760093/guy-hair.html [Pingback]
http://9qb-information.info/49998659/index.html [Pingback]
http://9qf-information.info/00462180/index.html [Pingback]
http://9qd-information.info/09493030/index.html [Pingback]
http://9qh-information.info/71410561/index.html [Pingback]
http://9oa-information.info/80602183/mushroom-system-hair-test.html [Pingback]
http://9qi-information.info/57464798/my-font.html [Pingback]
http://9ol-information.info/66906765/index.html [Pingback]
http://9qk-information.info/82048888/index.html [Pingback]
http://9oh-information.info/78036263/index.html [Pingback]
http://9se-information.info/79486509/index.html [Pingback]
http://9ra-information.info/54987164/index.html [Pingback]
http://9sn-information.info/55621046/uhc.html [Pingback]
http://9so-information.info/74411793/gang-bang-pic.html [Pingback]
http://9rf-information.info/17921016/index.html [Pingback]
http://9rs-information.info/64128585/city-planner-training.html [Pingback]
http://9ru-information.info/98203867/index.html [Pingback]
http://9sg-information.info/78391118/index.html [Pingback]
http://9uaek-le-informazioni.info/80902870/index.html [Pingback]
http://9uaea-le-informazioni.info/45505675/index.html [Pingback]
http://9uafo-le-informazioni.info/97655312/index.html [Pingback]
http://9uaep-le-informazioni.info/30881389/index.html [Pingback]
http://9uaeo-le-informazioni.info/86749695/calendario-mese-aprile-2007.html [Pingback]
http://9uaea-le-informazioni.info/86252840/index.html [Pingback]
http://9uafd-le-informazioni.info/12774393/index.html [Pingback]
http://9uafa-le-informazioni.info/00826748/index.html [Pingback]
http://9uahj-le-informazioni.info/46568368/index.html [Pingback]
http://9uagl-le-informazioni.info/76088770/index.html [Pingback]
http://9uagc-le-informazioni.info/06680027/stemma-comune-casalbeltrame.html [Pingback]
http://9uaga-le-informazioni.info/43346194/index.html [Pingback]
http://9uagt-le-informazioni.info/85387599/index.html [Pingback]
http://9uahl-le-informazioni.info/90754480/graphic-book.html [Pingback]
http://9uahg-le-informazioni.info/68084344/casey-vidalenc.html [Pingback]
http://9uahn-le-informazioni.info/96952263/netmeeting-port-forwarding.html [Pingback]
Navigation
Archive
<July 2008>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Dan Miser
Sign In
Statistics
Total Posts: 306
This Year: 21
This Month: 0
This Week: 0
Comments: 603
All Content © 2008, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)