-
If objects and DescriptorSystem inherited from basic DescriptorSystem than read and write are ok.
But if its inherited from ActiveRecord and ActiveRecordDescriptorSystem than get error on reading object User.
How repeat it:
1. File-in GlorpDown.st
2. in workspace execute (repeat you database account):
login := (Glorp.Login new)
database: PostgreSQLPlatform new;
connectString...
2009-02-14 22:55:11 UTC by nobody
-
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 by stefanschmiedl
-
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 by stefanschmiedl
-
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 by stefanschmiedl
-
alan_knight committed patchset 9 of module glorp to the GLORP CVS repository, changing 11 files.
2000-04-21 18:28:51 UTC by alan_knight
-
alan_knight committed patchset 8 of module glorp to the GLORP CVS repository, changing 1 files.
2000-04-21 17:51:52 UTC by alan_knight
-
alan_knight committed patchset 7 of module glorp to the GLORP CVS repository, changing 16 files.
2000-04-21 17:35:27 UTC by alan_knight
-
alan_knight committed patchset 6 of module glorp to the GLORP CVS repository, changing 3 files.
2000-04-08 14:36:43 UTC by alan_knight
-
alan_knight committed patchset 5 of module glorp to the GLORP CVS repository, changing 1 files.
2000-04-08 14:35:45 UTC by alan_knight
-
mas committed patchset 4 of module glorp to the GLORP CVS repository, changing 1 files.
2000-04-01 09:12:17 UTC by mas