Hello
Has anybody tried and run the ADO automation on service tier?
viewtopic.php?f=5&t=23038&hilit=lADOConnection
Based on this example, this doesn't work on RTC but works fine on classic.
The error is
If I change the code to
The compiler errors out
Has anybody tried and run the ADO automation on service tier?
viewtopic.php?f=5&t=23038&hilit=lADOConnection
Based on this example, this doesn't work on RTC but works fine on classic.
//lvarActiveConnection is of type variant lvarActiveConnection := lADOConnection; //this is where it errors out when on RTC lADOCommand.ActiveConnection := lvarActiveConnection;
The error is
The expression Variant cannot be type-converted to a String value.
If I change the code to
lADOCommand.ActiveConnection := lADOConnection;
The compiler errors out
Type conversion is not possible because 1 of the operators contains an invalid type.
Integer := Automation