Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isTable() always returns true #4

Closed
theknet opened this issue Jan 8, 2013 · 3 comments
Closed

isTable() always returns true #4

theknet opened this issue Jan 8, 2013 · 3 comments

Comments

@theknet
Copy link

theknet commented Jan 8, 2013

Only tested with SQLite but it always returns true.

To fix it I changed:

md.getTables(null, null, table, null);

to

ResultSet rs = md.getTables(null, null, table, null);
if(rs.next())
return true;
else
return false;

@joshuataylor
Copy link

Found this as well, if you wanted to add a pull request this can be fixed, otherwise I can make one if you want, @thekris1234

@PatPeter
Copy link
Owner

Sorry guys, that's what the algorithm was previously:

https://github.com/PatPeter/SQLibrary/blob/bad9dfe17741dd741edb23d0332d2cac6d8dc9fb/lib/PatPeter/SQLibrary/SQLite.java

I must've read the method wrong during a review and changed it, don't remember why though.

A pull request isn't necessary, I'll change that and try releasing 4.1 next weekend. Until then hotfix it yourselves.

@PatPeter
Copy link
Owner

This issue has been fixed in 4.1 and added to BukkitDev. However, I cannot push 4.1 to GitHub yet due to an error I am diagnosing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants