MilanHa
10-02-2006, 08:07 AM
Hi
I have proplem with this sample query
SELECT * FROM sys LEFT JOIN [local] ON [sys].[PK_]=[local].[SYS_PK_]
In the MS Access it is going well but when i try to connect to database from my application through ODBC, and I run query driver returns
recordset with right records count but with EOF=BOF=TRUE
Error appears only when in the left table is record with no pair in the right table
table sys:
PK_;NAME
1;"Name1"
2;"Name2"
3;"Name3"
table local:
PK_;SYS_PK_,DESCR
1;1;"Descr1"
2;2;"Descr2"
Thanks
Milan
I have proplem with this sample query
SELECT * FROM sys LEFT JOIN [local] ON [sys].[PK_]=[local].[SYS_PK_]
In the MS Access it is going well but when i try to connect to database from my application through ODBC, and I run query driver returns
recordset with right records count but with EOF=BOF=TRUE
Error appears only when in the left table is record with no pair in the right table
table sys:
PK_;NAME
1;"Name1"
2;"Name2"
3;"Name3"
table local:
PK_;SYS_PK_,DESCR
1;1;"Descr1"
2;2;"Descr2"
Thanks
Milan