Search:

Type: Posts; User: _lithium_

Search: Search took 0.26 seconds.

  1. Replies
    6
    Views
    5,033

    Re: jTable and jdbc

    I've tried even using:

    public void doDelete(){
    int i = 0;
    int r = 0;

    while (i < 600) {
    jTable1.remove(r);

    r++;i++;
  2. Replies
    6
    Views
    5,033

    Re: jTable and jdbc

    Just one last question (i hope lol)

    What would be a good logically way of "refreshing" a jTable to reflect any changes made? I have an add and delete button and want the jTable to automatically...
  3. Replies
    6
    Views
    5,033

    Re: jTable and jdbc

    I got the button issue figured out (had to use the .setEnabled function). I feel like the GUI Builder (NetBeans) allows me to build applications way faster then using hard coding. I never thought...
  4. Replies
    6
    Views
    5,033

    Re: jTable and jdbc

    Yeah it seems I really need to start reading the API more closely (although most of it makes stuff more complex then it is), I think the thing that is throwing me off is that when I learned Java I...
  5. Replies
    6
    Views
    5,033

    jTable and jdbc

    I have my jTable populated with the data from a database using this code: try {
    String url = "jdbc:odbc:dts";
    String user = "";
    String password = "";
    ...
Results 1 to 5 of 5