Hi group,
is it possible, that the method
AbtOracle10TimeStampField>>length
^4
is incorrect under 64-Bit-VASmalltalk?
I'm using the following script (database programming guide)
| conSpec connection querySpec resultCollection |
conSpec := AbtDatabaseConnectionSpec
forDbmClass: #AbtOracle10DatabaseManager
databaseName: '.....'.
["================================"
connection := conSpec connect.
resultCollection := OrderedCollection new.
querySpec := (AbtQuerySpec new)
statement: 'SELECT * FROM ....'.
(connection resultTableFromQuerySpec: querySpec)
do: [:eachRow | resultCollection add: eachRow asString].
"================================"]
ensure: [connection disconnect].
resultCollection inspect.
and i'm getting a Primitive failed in PlatformFunction>>callWithArguments:... due to GPF
The database table contains a column with type timestamp.
If i change the aforementioned method to return 8 instead of 4, it runs successfully.
Has anybody experienced the same problem?
Cheers,
Hermann
--
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
[hidden email].
To post to this group, send email to
[hidden email].
Visit this group at
https://groups.google.com/group/va-smalltalk.
For more options, visit
https://groups.google.com/d/optout.