Data Convertion

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jispullat
    New Member
    • Apr 2007
    • 1

    #1

    Data Convertion

    Hi
    How I get an intiger or number data from an access database and can I use this data as int type data in java program
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by jispullat
    Hi
    How I get an intiger or number data from an access database and can I use this data as int type data in java program
    Have a look at the JDBC framework. Basically you register a driver for your
    access database, establish a connection, create a sql statement and exec
    it. If produces a result set from which you can get your integers.

    kind regards,

    Jos

    Comment

    Working...