|
Grumpy Beginner
Joined: 24 May 2004 Posts: 10
|
Posted: Wed Jul 26, 2006 11:38 am
Problem accessing alias in subdirectory |
Why does this work:
#VAR dbitemrs @Conn.Execute( "SELECT * FROM Items WHERE Name = '%0'")
#ECHO dbitemrs.GetString
while the two sets below do not?
1.
#VAR FL/dbitemrs @Conn.Execute( "SELECT * FROM Items WHERE Name = '%0'")
#ECHO @FL/dbitemrs.GetString
2.
#VAR FL/dbitemrs @Conn.Execute( "SELECT * FROM Items WHERE Name = '%0'")
#ECHO @dbitemrs.GetString
Differences are highlighted in red. |
|
|
|
Vijilante SubAdmin
Joined: 18 Nov 2001 Posts: 5182
|
Posted: Wed Jul 26, 2006 11:05 pm |
Very likely when the class character was added no one tested it with COM calls and it may be a bug. You may have just found a rather old bug, use the full #VARIABLE syntax to define the class.
|
|
_________________ The only good questions are the ones we have never answered before.
Search the Forums |
|
|
|
|
|