PatPeter

Results 11 comments of PatPeter

With "Also export media" it needs to be separated into: - [ ] Download attachments (image uploaded to attachment) - [ ] Download embeds (someone pastes an image link) -...

How did I miss this issue? Sorry about that. This plugin is highly outdated and is no longer a good way to run SQL queries in Minecraft. I would suggest...

Thanks for the issue Michel! Since you don't want to reinvent the SQL libraries out there, have you tried the Bukkit API ORM? SQLibrary has essentially been deprecated in favor...

My response to persistent connections: http://stackoverflow.com/questions/4209454/a-persistent-connection-with-jdbc-to-mysql What do you need pooled connections for/how do you plan on using them?

Have you tried our Database Factory? That might help pool connections or we will have to build on top of it.

Well this is how to use the factory... ``` DatabaseConfig config = new DatabaseConfig(DatabaseConfig.Parameter.HOSTNAME, "localhost").setParameter(DatabaseConfig.Parameter.PORTNMBR, "3306").setParameter(DatabaseConfig.Parameter.DATABASE, "database").setParameter(DatabaseConfig.Parameter.USERNAME, "User").setParameter(DatabaseConfig.Parameter.PASSWORD, "password1"); config.setType(DBMS.MySQL); Database database = DatabaseFactory.createDatabase(config); ``` But it doesn't even use...

I've been doing quite a bit of research into this, and I will have to build it into SQLibrary myself. However, I would like to put it on the roadmap...

I'll delete and reinstall Pointshop on my server next chance I get. My maintenance hours for this weekend are already spent.

I installed the Pointshop on February 7th of this year, and the update checker never told me a new version was available. I have to say, the new version looks...