The following query returns all the records instead of just 2. When I run the query in the AWS SimpleDB browser it works, however. Am I using boto wrong?
conn = boto.connect_sdb()
dom = conn.get_domain('taxplan')
query = 'select Descr, PlanName, ItemName, Plan, ReceivedTime from taxplan limit 2'
rs = dom.select(query)
sl= []
for j in rs:
sl.append(j)
result['sboto'] = convert(sl[1:])
sys.stdout.write(json.dumps(result,indent=1))