-
SQLServer does not recognize SUBSTR as valid function name, adding SUBSTRING to the functions dictionary makes the test succeed.
SQLServerPlatform>>initializeFunctions
super initializeFunctions.
functions
at: #, put: (InfixFunction named: '+');
at: #copyFrom:to: put: (SubstringFunction named: 'SUBSTRING')
2007-03-29 09:41:53 UTC in GLORP
-
GlorpDatabaseLoginTest>>testUnsuccessfulLogin fails for
SQLServerPlatform connections with ODBC connection attribute "TrustedConnection=True".
If you configure the ODBC connection to use Windows authentfication to connect to SQLServer, the given user name seems to be ignored.
2007-03-29 06:29:07 UTC in GLORP
-
SQLServerPlatform requires a column named 'key' to be quoted. Adding
SQLServerPlatform>>initializeReservedWords
super initializeReservedWords.
reservedWords add: 'key'
fixes this problem.
2007-03-29 06:20:15 UTC in GLORP
-
All files in the archive are chmod 700. Not much of a
problem during build, but after running 'sudo sh
install.sh' the manual pages in /usr/local/man/man1 are
still chmod 700 instead of, say, 644.
2005-09-30 08:37:36 UTC in p7zip
-
After changing my locale settings to UTF-8, muttprint 0.72a
stopped working. When running muttprint 0.72d (gentoo ebuild for
~amd64) out of the box, latex complains about a missing file utf8.
def. However, using utf8x (in line 970) from the latex-unicode ebuild
works.
Question: In sub convert_init, line 1816, you compare $charset to /
utf[-_]8/. Shouldn't this be /.../i, too, as in...
2005-09-03 09:28:08 UTC in Muttprint -- Pretty Printing Your eMails
-
configure --with-module=clx/new-clx
make ... --with-module=clx/new-clx
results in syntax errors in clx.e,
which are located in the lines containing
UNDEFINED.
If I change clx.f from:
444: #define NOTIMPLEMENTED NOTREACHED
445: #define UNDEFINED NOTIMPLEMENTED
to:
444: #define NOTIMPLEMENTED
445: #define UNDEFINED NOTIMPLEMENTED
the build works again and sokoban runs fine :)
2002-03-06 23:49:56 UTC in CLISP - an ANSI Common Lisp
-
Visit http://dunit.sf.net,
scroll down to Downloads-section,
click on link "license".
I am not allowed to view it :-)
Regards,
Stefan.
2001-08-04 18:28:41 UTC in DUnit: Xtreme Unit Testing for Delphi