Hello --
I purchased jdbc driver for Visual Fox (dbf files) around 6/20/2007 and an Excel jdbc driver around 8/27/2007.
I love both products. They are a real help for me with writing Java applications.
My question is about the dbf v4.0 driver.
When I open a dbf file in another editor, like Visual Fox Pro or DBF Manager I get more rows than when I use the dbf jdbc driver.
I am missing about 4% of data using the dbf jdbc driver.
I have used: select * from tablename
I have also tried to find a specific record too: select * from tablename where id = 86. This returns no rows when there does exist a record where id = 86.
The same rows are being missed everytime I run the program. It is not sporadic.
Please advise.
Thank You.
Brent
|
I am using dbf v3.0 not 4.0 as my previous stated.
|
I figured out my problem. The rows are "deleted" in the foxpro database so the records don't show up with my query. Thanks.
|
Yeah. If you wish to see thosed deleted rows, you can use DeletesAreVisible=false connection property.
DeletesAreVisible: Indicates whether DBF's resultSet includes deleted records.
|