|
return " FETCH FIRST %s ROWS ONLY" % select._limit |
There Is some problem this Limit clause function.
For query= "SELECT ^ FROM <table_name> limit 9" it gives SELECT * FROM <table_name> FETCH ONLY FIRST 9;
But it should be like SELECT FIRST 9 ^ FROM <table_name>
Please help me I am stuck during working on project.
InformixAlchemy/IfxAlchemy/base.py
Line 351 in 736ffc8
There Is some problem this Limit clause function.
For
query= "SELECT ^ FROM <table_name> limit 9"it givesSELECT * FROM <table_name> FETCH ONLY FIRST 9;But it should be like
SELECT FIRST 9 ^ FROM <table_name>Please help me I am stuck during working on project.