This is a discussion on SQLColAttributes and SQL_DESC_NULLABLE within the pgsql Interfaces odbc forums, part of the PostgreSQL category; --> Hello, I'm using .Net Odbc Data Provider, ODBC driver 8.1.x and PostgreSQL 8.1.0. To find out whether column can ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hello, I'm using .Net Odbc Data Provider, ODBC driver 8.1.x and PostgreSQL 8.1.0. To find out whether column can be null, the .NET calls ODBC function SQLColAttributes. Problem is, that this function allways returns SQL_NULLABLE, even for columns declared as NOT NULL. I tried to enable "Parse Statements" option of the driver, but it didn't help. I downloaded the latest sources, compiled them to see what's going on inside and found this: It seems that for SQLColAttributes to return something else than SQL_NULLABLE, "Parse Statements" option MUST be turned on. Am i right? For some reason stmt->manual_result is true, which causes that the statement is not parsed. What does this stmt->manual_result mean? Thanks in advance. Robert Jires ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend |
| |||
| > SQLColAttributes. Problem is, that this function allways returns > SQL_NULLABLE, even for columns declared as NOT NULL. I tried to enable > "Parse Statements" option of the driver, but it didn't help. Please, could you add this bug report to pgfoundry? Feel free to try patch it. > I downloaded the latest sources, compiled them to see what's going on > inside and found this: > It seems that for SQLColAttributes to return something else than > SQL_NULLABLE, "Parse Statements" option MUST be turned on. Am i right? > For some reason stmt->manual_result is true, which causes that the > statement is not parsed. What does this stmt->manual_result mean? We think manual_result is only way to get result now. This problem was create during convert to using libpq. The driver isn't fully cleaned after rewrite to libpq support. You can contact me directly in czech ;-) as my english is poor. Luf ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| ||||
| > It seems that for SQLColAttributes to return something else than > SQL_NULLABLE, "Parse Statements" option MUST be turned on. Am i right? > For some reason stmt->manual_result is true, which causes that the > statement is not parsed. What does this stmt->manual_result mean? I attach patch which solve this problem. Thanks to Robert to point it and find the solution. I don't know if it works with declare/fetch or server side prepare (maybe other options could break it too). Please is there someone who can test it? I can upload Windows DLL to test it if you want. Thanks Luf ---------------------------(end of broadcast)--------------------------- TIP 1: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |
| Thread Tools | |
| Display Modes | |
|
|