Search:

Type: Posts; User: jatinrai199

Search: Search took 0.09 seconds.

  1. Replies
    3
    Views
    6,376

    Re: no data found ms -access sql exception

    its compiled successfully but when i run it it shows :
    java.sql.SQLException:no data found
    but i hav written code in try n catch block !!
    help plz
  2. Replies
    3
    Views
    6,376

    no data found ms -access sql exception

    class Testdb
    {
    public static void main(String ...arg)
    {
    try
    {
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection c =DriverManager.getConnection("jdbc:odbc:jatindsn","system","pwd");
    ...
  3. Replies
    4
    Views
    1,221

    Re: help me up plz

    i am sorry for not explaining my question .. i posted in hurry ..btw i got solution
    thnx newbie .......//
  4. Replies
    4
    Views
    1,221

    Re: help me up plz

    i am beginner in java
    if there is any silly mistake please forgive me..
    and if possible then plz tell me
    " when we should make new classes in multiclasses program " !!
  5. Replies
    4
    Views
    1,221

    help me up plz

    import java.util.*;
    class MyComp implements Comparator
    {
    public int compare(Object o1 ,Object o2)
    {
    Temp t1 = (Temp)o1;
    Temp t2 = (Temp)o2;
    if(t1.salary>t2.salary)
    return 1;...
  6. Replies
    4
    Views
    1,396

    [SOLVED] Re: multtithreaded chat server

    thanks a lot ......
  7. Replies
    4
    Views
    1,396

    [SOLVED] multtithreaded chat server

    i am not getting desired output ..still there are not errors !!!!

    //class MyServer

    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class MyServer
    {
    ArrayList al = new...
Results 1 to 7 of 7