Forum Discussion

ekiza23's avatar
ekiza23
Contributor
12 years ago

Possible Defect: Script Extensions do not allow same (case insensitive) runtime object name in 2 different namespaces

I have a script extension that I can call methods from in this way:

SQL.recordset.getRecordSet



So, the runtime object is 

Namespace: "SQL"

Name: "recordset"



-------------------------------------------

I created a second script extension with a runtime object such as :

Namespace: "Verifications"

Name: "Recordset"



Result: [Exception] object doesn't support this method



-------------------------------------------

I changed it to 

Namespace: "Verifications"

Name: "recordset"



Result: [Exception] object doesn't support this method



-------------------------------------------

I changed it to 

Namespace: "Verifications"

Name: "record_set"



Result: It worked correctly.



-------------------------------------------

Conclusion: Script Extensions do not allow same (case insensitive) runtime object name in 2 different namespaces

8 Replies