Status: New
Owner: ----

New issue 3735 by [email protected]: ODBCLibrary class moduleName calls deprecated method
http://code.google.com/p/pharo/issues/detail?id=3735

I ran the sqlite/odbc tutorial on an XP box.
http://www.pharocasts.com/2010/12/access-database-through-odbc.html

When 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'




Reply via email to