fix for Feature #136

This commit is contained in:
Miroslav Stampar
2010-08-31 14:25:37 +00:00
parent e810fe7b0b
commit c4040ab297
3 changed files with 12 additions and 14 deletions

View File

@@ -320,7 +320,9 @@
<inband query="SELECT tbl_name FROM sqlite_master WHERE type='table' ORDER BY 1"/>
<blind query="SELECT tbl_name FROM sqlite_master WHERE type='table' LIMIT %d, 1" count="SELECT COUNT(tbl_name) FROM sqlite_master WHERE type='table'"/>
</tables>
<columns/>
<columns>
<inband query="SELECT sql FROM sqlite_master WHERE tbl_name='%s'"/>
</columns>
<dump_table>
<inband query="SELECT %s FROM %s"/>
<blind query="SELECT %s FROM %s LIMIT %d, 1" count="SELECT COUNT(*) FROM %s"/>