VFP CDX Files REINDEX in Java
Hi,
Is there a way to reindex visual foxpro tables in Java? I am able to access the data and query thru sun odbc bridge. However, I am unable to issue the reindex command on the table I choose. I do something like this:
statement.execute("USE TABLE VFP_TABLE EXCLUSIVE");
statement.execute("REINDEX VFP_TABLE");
I also tried executeUpdate it didn't work.(??)
I get an access violation error. Any ideas? Am I missing something here?
Thanks in advance.