-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
select query not give result in certain cases #129
Comments
@beautybird: Maybe an unrelated note: the 2nd variant you are using A few things that comes to my mind:
Please check the above with extra debugging, and if nothing helps, please try to create a reproducible use case, I'll happy to debug and fix it. |
I ran debug with 4 break point :
debugging break point 3(before break point 4) get me below report , seems to me the issue is with the substitutionValues .
|
That empty On top of the I'd encourage you to create a reproducible environment (e.g. |
Hi, |
@beautybird: another thing to debug if you are on it: what happens if you select 10 columns? 15? 16? 17? |
On same database, same table,same row and same connection :
The row contains 21 columns ..
The following select query has 2 parametarized values, it gives a result & also can run on pgPool.run & pgPoo.runTx (i.e, pgPool.queueSize = 1)
But in following select query (retrieve data from DB) :
1- It gives null despite me trying 3 select String variants
2- When run pgPool.run I get 0 connection (i.e, pgPool.queueSize = 0):
When connecting pgAdmin3 to the database...above 3 variants queries strings gave results .
On the application neither return a result !!
I'm puzzled..is there any limitations applied on the " c.query " function ?
Just so you know , Postgresql version 10, emaildb column is a varchar Primary key , while citydb just a varchar ,
and I'm getting the pgPool from :
final pgPool = PgPool(pgEndpoint, settings: pgPoolSettings);
The text was updated successfully, but these errors were encountered: