To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65466





------- Additional comments from [EMAIL PROTECTED] Wed Oct 25 06:49:38 -0700 
2006 -------
Hi,

I can't reproduce this.

First I have create a java program to execute your class.
Here is the code
public class main
{
    public static void main(String [] args) throws Exception
    {
        OpenOfficeDatabaseConnector o = null;        
        try
        {
            o = new OpenOfficeDatabaseConnector("spam.odb");
            java.sql.Connection con = o.connection();
            java.sql.Statement stmt = con.createStatement();
            java.sql.ResultSet res = stmt.executeQuery("select * from
\"MESSAGES\"");
            while (res.next())
            {
                System.out.println(res.getString(1));
            }
            o.closeAndCompact();
        }
        catch(Exception e)
        {
            o.close();
            e.printStackTrace();
        }
    }
}

If I run this code with the given odb file I get 10 records back.

Hm, There have to be something different in your environment, but what?

Do you have any ideas? Does this only happen under MAC, I have used a
SRC680_m189 under Linux.

Bye Marc



---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to