vote up 0 vote down star

In Java, of course. I need to enable "force", but I have no idea how. I'm sure it might go somewhere in the URL, but I've tried a bunch of different things and looked for a bit on Google, to no avail.

Thanks!

flag

44% accept rate
Could you clarify your question? – Reed Olsen Jul 2 at 20:38
Sure. When I execute a a number of ALTER TABLE queries in mysql from the command prompt, not all the tables queried exist (yet. but they will). So in order to force mysql to continue through all the queries, I use the -f variable when launching it. (ie. mysql -f -uuser -ppassword SCHEMA_NAME < queries.sql). I'm trying to replicate that "force" variable in Java using the JDBC. – Monster Jul 2 at 20:41

1 Answer

vote up 1 vote down

I think you have to do that in your java code, by catching SQL exception on each alter statement and ignoring it and moving on to the next one. I would check for some unique property of the SQL exception (class, message content) that happens in that situation, and rethrow (or wrap and rethrow) the SQL exception if it isn't what an alter table throws you aren't swallowing problems.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.