Search:

Type: Posts; User: PhHein

Search: Search took 0.11 seconds.

  1. Replies
    13
    Views
    2,743

    Re: ExecuteUpdate throws exception

    These:
    private String naam_gerecht;
    private String prijs;
    private String ingredienten;
    private String recept;
    should be encasulated in a class Gerecht.
    Using Vector is very uncommon, I'd use a...
  2. Replies
    13
    Views
    2,743

    Re: ExecuteUpdate throws exception

    'afhaalmenus' ('menu_id','naam_gerecht','prijs','ingredienten','recept') -> All these single quotes seem wrong to me.
  3. Replies
    13
    Views
    2,743

    Re: ExecuteUpdate throws exception

    Yes. It tells you that your sql String (sset) is borked.
  4. Replies
    13
    Views
    2,743

    Re: ExecuteUpdate throws exception

    Hi, change this:

    catch (Exception e){
    System.out.println("foutje");
    }
    to

    catch (Exception e){
    e.printStackTrace();
    }
Results 1 to 4 of 4