ekiza23
12 years agoContributor
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
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