Only 10 events in xml from SQL

Hello All

I have implemented the scheduler to work with SQL tables, all seems to be going well however it doesn’t appear to load more then 10 events into the XML file.

Is this specified somewhere?

Thanks
Mike

By any chance are you using php connector agains MsSql database?

Yes I am :slight_smile:

Thanks - you set me up on the trail for finding it myself…

$res = mssql_query($sql,$this->connection,($this->start_from===false?10:0));

in db_mssql.php

Thanks

Yep, you can safely remove third in this command

$res = mssql_query($sql,$this->connection);

Same fix will be included in the next version.