However the following fix on line 1656 fixes things (and I don't think it breaks anything on the other dba platforms).
was: $rs = $this->db->Execute( 'SELECT * FROM ' . $table . ' WHERE -1' );
fixed for mssql: $rs = $this->db->Execute( 'SELECT * FROM ' . $table . ' WHERE (1=2)' );
Great project though! Let me know if I'm off base on the above resolution as I am only moderately versed in SQL.
Messing around with AXMLS today--I'll take a look at it. The fix looks reasonable.
Rich
Log in to post a comment.
However the following fix on line 1656 fixes things (and I don't think it breaks anything on the other dba platforms).
was:
$rs = $this->db->Execute( 'SELECT * FROM ' . $table . ' WHERE -1' );
fixed for mssql:
$rs = $this->db->Execute( 'SELECT * FROM ' . $table . ' WHERE (1=2)' );
Great project though! Let me know if I'm off base on the above resolution as I am only moderately versed in SQL.
Messing around with AXMLS today--I'll take a look at it. The fix looks reasonable.
Rich