4
Comments
  • 1
    Can you elaborate?
  • 1
    @dontPanic Something always goes wrong.
    The user doesn't have access to the table, the connection times out, etc.
    At least that's the case for me.
  • 1
    @skiilaa oh that sucks! I've never touched any SQL in my life (didn't have to) but I hope your relationship with it will get better :v
  • 0
    I had a quick fix:
    try{
    sendStatement(...);
    }catch() {
    // print Error
    reconnect();
    semdStatement(...);
    }
    // Give up
Add Comment