Status: New
Owner: ----
New issue 3735 by
[hidden email]: ODBCLibrary class moduleName calls
deprecated method
http://code.google.com/p/pharo/issues/detail?id=3735I ran the sqlite/odbc tutorial on an XP box.
http://www.pharocasts.com/2010/12/access-database-through-odbc.htmlWhen creating the sqlite database using ODBC, a warning pops up:
"The method SmalltalkImage platformName has been deprecated.
Use Smalltalk os platformName."
I traced the warning to this Sender:
ODBCLibrary class >> moduleName
"Return the name of the module for this library"
SmalltalkImage current platformName = 'Win32' ifTrue: [ ^ 'odbc32' ].
SmalltalkImage current platformName = 'unix' ifTrue: [ ^ 'libodbc.so' ].
^ self error: 'Don''t know the ODBC library name'