Tagged Questions
0
votes
2answers
39 views
Unable to connect to MS Access Database
This is my code:
public class ConnectDB {
Connection conn;
Scanner kb=new Scanner(System.in);
public String ID;
public ConnectDB()
{
try
{
Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
...
0
votes
1answer
43 views
MsAccess SQL Exception Too few parameters
Currently making a java program that grabs data off of a MSAccess Database and some of these errors are extremely frustrating. I keep getting this SQL.Exception : Too few parameters. Expected 1 error ...
2
votes
1answer
36 views
Syntax Error in insert upto? MSAccess
I am trying to insert data a user enters into a jtextfield into an msaccess database. When I try to execute my sql statement I get an error stating Syntax error in INSERT INTO statement.
I checked my ...
0
votes
2answers
98 views
java select statement is not working
I'm trying to return records from a table in an Access DB(2010), but every time I run the statement I keep getting this error:
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
...
1
vote
3answers
227 views
Getting Unicode Data from MS Access output will be “ ???????????????????”
I am using MS Access & MySQL ,in access input this word
کوردستان ی عیراق (it's kurdish language using unicode )
my code is :
try{
String path ="src\\Database.accdb";
...
0
votes
0answers
86 views
if values of combobox remains blank then must have to insert into M S Access
if i have 4 columns in database and i have to insert items of combobox into those colums then i tried below code but it only works when 4 items in combobox are inserted, if i inserts only 2 items ...
0
votes
0answers
94 views
one combobox cannot add all it's items into ms access database
> [i want to add all combobox item in msaccess database]
i want to do this
i want to add every items of one combobox into msaccess database for e.g. i want
to do that my combo has 4 fields ...
0
votes
0answers
88 views
One combobox cannot add all its items into MS Access database
> [i want to add all combobox items in MSAccess database]
I want to do this
I want to add every items of one combobox into MSAccess database for e.g. I want
to do that my combo has 4 fields ...
0
votes
1answer
134 views
INSERT sql statement combined with SELECT and WHERE
I am trying to insert these values into a database, however, the INSERT and WHILE clause are incompatible with each other. Does anybody have any ideas how I could achieve my desired results in a ...
1
vote
2answers
134 views
sql.exception: column not found
Hi guys can u tell me what is wrong with my code?
When I set my ResultSet as "SELECT * FROM Table1" it works perfectly,
also if it is "SELECT key, itemName, itemPrice, itemQuantity FROM Table1"
but ...
0
votes
2answers
339 views
Database extension is accdb when I want it to be mdb
I am using MS Office 2010. I want to create a .mdb database. I looked around but I don't know how to change the default extension.
This database will be used for practicing Java JDBC-ODBC connection ...
1
vote
3answers
134 views
Writing to access database in Java?
I'm working on a database project about adding, editing and deleting registries to a Students table which has fields:
Last_names, Names, IcNumber, Average, Entry_mode, Career and Change
In the ...
-2
votes
1answer
888 views
retrieve database into JTextField
i'm doing a project where i need to retrieve data from one field of access and display it on JTextField and its serial no.select fieldname from tablename
but it'l select all rows.also how to retrieve ...
0
votes
2answers
2k views
accessing a Microsoft 2010 Access database from a Java program running on a Windows Vista OS
Does anyone know how to access a Microsoft 2010 Access database from a Java program running on a Windows Vista OS? An open source, or at least free solution would be preferred, but I will consider a ...


