Home Answers Viewqa Java-Beginners How to Store Float Value into Access Database

 
 


shweta
How to Store Float Value into Access Database
1 Answer(s)      3 years and a month ago
Posted in : Java Beginners

Hello sir,I want to Store Student Marks Percentage into Access Database in Float Value how i can Store it.
View Answers

April 12, 2010 at 3:52 PM


Hi Friend,

You can use double data type in place of float. To store the double value in Access database, you need to set the datatype 'Number' to both the fields and change the Field Size of both the fields to 'double' from Field Properties.

Here is an example:

import java.sql.*;
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class Test extends JFrame{
public static void main(String[]args){

try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con1 =DriverManager.getConnection("jdbc:odbc:access","","");
Statement stmt=con1.createStatement();
double marks=80.58;
double percent=80.58;
int i=stmt.executeUpdate("insert into student(marks,percentage) values("+marks+","+percent+")");
JOptionPane.showMessageDialog(null,"Data is successfully inserted into database.");
con1.close();
}
catch(Exception e){
System.out.println(e);
}
}
}

Thanks









Related Pages:
How to Store Float Value into Access Database - Java Beginners
How to Store Float Value into Access Database  Hello sir,I want to Store Student Marks Percentage into Access Database in Float Value how i can Store.... To store the double value in Access database, you need to set the datatype
Write a float value into float buffer at given index.
Write a float value into float buffer at given index.  In this tutorial, we will see how to write the given float value into float buffer at the ...(..) method write the given float value into associated buffer at given index
store dynamic generated textbox value into database
store dynamic generated textbox value into database  sir, how do i store dynamically generated textbox value into the database thanks in advance
how to delete the access database value in jsp
how to delete the access database value in jsp  i loaded my database data into the dropdown list box...now i want to delete the value..plz send the source code to delete the value in dropdown list box and also from database
how to delete the access database value in jsp
how to delete the access database value in jsp  i loaded my database data into the dropdown list box...now i want to delete the value..plz send the source code to delete the value in dropdown list box and also from database
How to store JComboBox selected Item into Ms Access Database - Java Beginners
How to store JComboBox selected Item into Ms Access Database  How to store JComboBox selected Item into Ms Access Database.  Hi Friend...:access","",""); Statement stmt=con.createStatement(); ResultSet rs
how to store image file and videofile in ms access database using java? - JDBC
how to store image file and videofile in ms access database using java?  how to store image file and video file in ms access database using java
string to float
string to float  hiii. how can i change my string value in float... is your textfield then float FloPri = [rate.text floatValue]; the value is converted in float variable name FloPri
How to store image into database
How to store image into database  Hi, all I want to store image into database using Java. Can anyone help me that how can i store image into database... through the following link How To Store Image Into MySQL Using Java
How to store an image in database
How to store an image in database  Hi........... How to store an image in postgresql using a query. I mean tell me the way to store an image using datatype. I am using the datatype bytea but tell me how to insert the image
Problem with Double type Value in Access Database - Java Beginners
Problem with Double type Value in Access Database  Hello sir I have store Double Type Value in MS Access Databse,but when I search Record then it Gives Round Figure Value related with Percentage and I want to Store and Retrieve
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
how to store image upload path to mssql database
how to store image upload path to mssql database  hi there!!, i need help in storing the image upload path into the database. basically i just use file select to upload the image from jsp to database. however when i click submit
store html value in the sqllite 3 php
store html value in the sqllite 3 php  i have a php script that will parse html page content link and view but i need to know how to store this content in the sqlite3 database any suggestion ? include_once('simple_html_dom.php
code for insert the value from jsp to access database
code for insert the value from jsp to access database  code for insert the value from jsp to access database
Define float in Java
JavaFloatExample { /* Learn How to define and use float variable in Java...Define float in Java  Hi, What is the correct method to define float variables in Java? float f = 3.0f; double d = 3.0d; Thanks  
how to store jtable value in multidimensional array?
how to store jtable value in multidimensional array?   i want to store the value of jtable in multidimensional array,with type double. how to store jtable value in multidimensional array
how to store jtable value in multidimensional array?
how to store jtable value in multidimensional array?   i want to store the value of jtable in multidimensional array,with type double. how to store jtable value in multidimensional array
How to read excel data and store it in database - Java Beginners
How to read excel data and store it in database  Hi, I want a java code to read data from excel and store it in Ms Access database.I tried the code but but its printing the output in console.I dont know how to store the excel
how to retrieve the id value itself from the access database to drop down listbox in jsp
how to retrieve the id value itself from the access database to drop down listbox in jsp  how to retrieves the id which is an int datatype, from access database to drop down list box in jsp...plz send the code for that.....plz
objective c define float
objective c define float  Hi, How to define float variable in objective c? Thanks   Hi, Here is the example of defining float variable... : myClass.h @interface myClass { float value; } @property float value; @end
Conversion from int to float
Conversion from int to float: In this tutorial we will learn how to convert an int type value  to float type. Description: This program will take two...; to float type data. The line int a = Integer.parseInt(buffreader.readLine
how to access database in applet
how to access database in applet  HI... I'm having an applet where we should display the database values in the applet... It works fine in the local system(same network)... but when its in the server, we r getting null values
Compare a float buffer with another float buffer.
Compare a float buffer with another float buffer.  In this tutorial, we will see how to compare a float buffer with another float buffer. FloatBuffer...(..)method allocate a new float buffer. int compareTo
Conversion from float to int
Conversion from float to int: In this tutorial we will learn how to convert a float type value to int type value. Description: This program will take a float value from console and provides a conversion to int type data. The line
Conversion from float to String
Conversion from float to String: In this tutorial we will learn how to convert a float type value to String type value. Description: This program will take a float value from console and provides a conversion to String type data
Conversion from float to short
Conversion from float to short: In this tutorial we will learn how to convert a float type value to short type value. Description: This program will take a float value from console and provides a conversion to short type data
Conversion from float to byte
Conversion from float to byte: In this tutorial we will learn how to convert a float type value to byte type value. Description: This program will take a float value from console and provides a conversion to byte type data. The line
Conversion from float to long
Conversion from float to long: In this tutorial we will learn how to convert a float type value to long type value. Description: This program will take a float value from console and provides a conversion to long type data. The line
Conversion from float to double
Conversion from float to double: In this tutorial we will learn how to convert a float type value to double type value. Description: This program will take a float value from console and provides a conversion to double type data
Subtract a value in the database from java
Subtract a value in the database from java   Hi, i want to know how to subtract a value on a database. im using JDBC connection from access and i want to decrement the value of table "quantity" of 1 each time it passes a loop my
How to store JComboBox item into database
How to store JComboBox item into database   import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; import javax.swing.DefaultComboBoxModel; import javax.swing.JComboBox; import
Conversion from float to char
Conversion from float to char: In this tutorial we will learn how to convert a float type value to char type value. Description: This program will take a float value from console and provides a conversion to char type data. The line
Conversion from long to float
Conversion from long to float: In this tutorial we will learn how to convert a long type value to float type value. Description: This program will take a long type value from console and provide the conversion to float type
Conversion from float to boolean
Conversion from float to boolean: In this tutorial we will learn how to convert a float type value to boolean type value. Description: This program will take a float value from console and provides a conversion to boolean type data
Conversion from byte to float
Conversion from byte to float: In this tutorial we will learn how to convert a byte type value to float type value. Description: This program will take a byte value from console and provides a conversion to float type data. The line
Conversion from double to float
Conversion from double to float: In this tutorial we will learn how to convert a double type value to float type value. Description: This program will take a double value from console and provide the conversion to float type
how to access the MS ACCESS database with java
how to access the MS ACCESS database with java   how to access the MS ACCESS database with java how can we insert,delete,update,search records of ms access with java   Java MS Access database connectivity Follow
how to read the values for text and csv files and store those values into database in multiple rows..means one value for one row
how to read the values for text and csv files and store those values into database in multiple rows..means one value for one row  Hai, I need... or .txt) file and get the values from that file and store them into database
store and retrive image from the database
store and retrive image from the database  please provide me with the code and the explanation of what each line does for the below query. -how to store and retreive images from sql database using sql commands -how to store
MS ACCESS
MS ACCESS  i have done : Insert form data into MS database...-> data sources. 2)Click Add button and select the driver Microsoft Access...="background-color:#FAEBD7;height:500px;width:350px;float:left;"> <
MS ACCESS
MS ACCESS  i have done : Insert form data into MS database Follow...-> data sources. 2)Click Add button and select the driver Microsoft Access...="background-color:#FAEBD7;height:500px;width:350px;float:left;"> <center>
MS ACCESS
MS ACCESS  i have done : Insert form data into MS database...-> data sources. 2)Click Add button and select the driver Microsoft Access...="background-color:#FAEBD7;height:500px;width:350px;float:left;"> <
how to store and then immediately retrieve when store the image into database?
how to store and then immediately retrieve when store the image into database?  how to store and then immediately retrieve when store the image into database?   Here is a jsp code that insert and retrieve image from
Connect database in Access to Netbean?
Connect database in Access to Netbean?  how to connect database in micrsoft access to Netbean?i know it can be connected by using JDBC-ODBC bridge, can i know the steps in connecting the database? Is there any source code
how to set a value of dynamic number of drop down lists on a jsp page and access it value on another jsp page
how to set a value of dynamic number of drop down lists on a jsp page and access it value on another jsp page  actually i have to create dynamic... ,rating2......number of buks in that category(and each drop down list has value
applet connected to table in MS Access database
applet connected to table in MS Access database   i have connected my java code with the MS access database and this is my code, can anyone tell me how to show the table in an applet...pls import java.sql.
Conversion from short to float
Conversion from short to float: In this tutorial we will learn how to convert... type value from console and provides a conversion to float type. The line... to float type---"); System.out.println("Enter short type value: "); // Read short

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.