Search:

Type: Posts; User: copeg

Search: Search took 0.10 seconds.

  1. Re: how to plot a line graph by reading the values from database?

    Timestamp extends java.util.Date. java.sql.Date extends java.util.Date. You can construct a instance of java.sql.Date using long representation, which can be retrieved using the getTime() method...
  2. Re: how to plot a line graph by reading the values from database?

    A Timestamp cannot be cast to a Date...your database appears to have Timestamp. If you want a java.sql.Date, then a) change the Timestamp data type b) Add a column of type Date c) Convert the...
Results 1 to 2 of 2