Tagged Questions
0
votes
0answers
21 views
Connecting Rapid Miner to 64bit ODBC
I've been trying to pull information off of an IBM iSeries (as400) dB2 (5.1) into RapidMiner using an ODBC connection. Thus I'm using JDBC:ODBC bridge to affect this connection. Yes, I'm aware this ...
0
votes
1answer
23 views
Is it possible to access ODBC over the network from Java client?
I'm looking for a way to access the ODBC API on a Windows machine from a Java application running on a different machine, over the network. Is this possible?
Some notes...
I am not trying to connect ...
1
vote
3answers
62 views
java.sql.SQLException: No database selected - why?
the last days I was trying to learn how to access mySQL databases via Java.
I am able to load the driver and get a connection to the database ( at least I think so, since I don't get an exception ...
0
votes
0answers
57 views
Talend : [Microsoft][ODBC Driver Manager] Invalid string or buffer length
I created a simple job which connect to an Access database to transfer data between a table to a MySQL one. Here is the schema:
tAccessInput_1 ("Table1") ---------- tMap_1 ---------- tMysqlOutput_1 ...
0
votes
0answers
17 views
The specified DSN contains an architecture mismatch between the Driver and Application error
So I've done hours of trial and error and research on this trying to figure out what this error means. As far as I can tell, it's caused by a difference between the bit architectures of the ODBC ...
-1
votes
1answer
43 views
Is it be a bad idea to use JNI to leverage JDBC in C/C++?
I am thinking about starting a project that will communicate to multiple DBMS's. Although unavailable directly from C/C++, JDBC remains attractive for the following reasons:
My software shall be ...
0
votes
2answers
27 views
Why does Oracle open cursors by JDBC inserts?
I use an Oracle Database with JDBC and execute INSERTs on a connection. For each insert I create a new Statement.
After much inserts (>1000), the error ORA-01000 occurs, meaning that Oracle has open ...
0
votes
1answer
30 views
Syntax error in query mdb java
I have created a application using Java which connect to the MDB file, it writes read and modify data success fully.
I have tested it on WIndows 7 32 bit.
Now I have shipped every thing on the other ...
0
votes
1answer
174 views
Why am I getting “Data source name not found and no default driver specified”?
From Java, I want to connect to an .ACCDB file in the server (DSN less) and I keep getting the error. I googled for few hours and could not find anything. Please help!
String sURL = ...
1
vote
0answers
138 views
Reading Visual Foxpro Data From Java using ODBC
I am trying to query a dbf table from my Java application. I put in reference this thread
I created a system data source using the ODBC Data Source Administrator, I set the data source name to be ...
2
votes
1answer
45 views
IBM DB2 JDBC over ODBC: SQLException thrown when running delete on empty table
I'm accessing IBM DB2 datatable available as ODBC datasource, using sun.jdbc.odbc.JdbcOdbcDriver driver.
The problem that I've encountered is, when I'm executing DELETE FROM table using ...
1
vote
0answers
50 views
Batch / Bulk insert in R
I am trying to do a batch insert in R using RJDBC. It seems like it inserts 1 row at a time which takes a lot of time.
I was wondering if anyone knows of a solution in R to do bulk insert data from ...
1
vote
0answers
103 views
JDBC Error in RubyMine 5.4
I have a problem with ruby mine 5.4 an connection to my sqlite3 or mysql database.
There comes allways the same error msg:
Connection to Rails rails3-bootstrap-devise-cancan-master: development ...
0
votes
2answers
151 views
MS Access ODBC connection
I am using MS Access as backend for a web application.
Since I am using 64bit OS, I have updated the path to sysWOW64 in ODBC (Data Sources)...But I still I get an error:
...
0
votes
2answers
139 views
howto retrieve binary data from ms access “attachment” field via jdbc-odbc
I wrote a small java application to read data from an access 2007 database. I can read all fields but not the one containing the photo. The field type is "attachment".
When I call the .getBlob() ...
0
votes
0answers
133 views
Data not found exception don't know what is wrong
I'm trying to create ids using java and sql and but i'm getting exception not sure where I'm going wrong
try
{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection cn= ...
1
vote
2answers
113 views
General error in JDBC(updating database)
private void sUpdateBtnActionPerformed(java.awt.event.ActionEvent evt) {
String query = "UPDATE Student SET lastname = ?, firstname = ?, course = ?, yearlvl = ?, username = ?, password = ?";
...
0
votes
1answer
831 views
JDBC/ODBC Data source name not found and no default driver specified
I realise there are many question linked to this and I have read most (I won't say all because that would be a lie) of them but none seem to quite cover my problem.
I am currently maintaining a quite ...
0
votes
1answer
157 views
Getting value fom a ResultSet hangs
I am building a Java application to query a remote SQL database. I'm able to read all but one of the columns. When I try to read that column, my application just hangs forever without firing any ...
0
votes
1answer
102 views
Setting up jdbc in Maven project
I have been working on a maven project solely for junit tests. I have created a class to access and do simple queries against the db. Not sure if i am installing the ...
-1
votes
1answer
1k views
connection string of jdbc odbc with MS access
I am trying to make jdbc odbc connection with ms access
but not able to pass the password which is consisted from special characters
I am using the following code
try
{
...
0
votes
1answer
73 views
List all the tables in an Access database into a JScrollPane
Here is what I am trying to achieve:
There is a set of created tables which are populated with data
The user will use the GUI to view the contents of the table or drop the table. Thats it, two ...
0
votes
1answer
160 views
Java SQL Exception when creating a DSNless connection
Here is my code:
package dsnless;
import java.sql.*;
////////////////////////////////////////////////////////////
//This class will be used to fire queries to the database
...
1
vote
1answer
210 views
Character encoding via JDBC/ODBC/Microsoft Access
I'm doing a connection via JDBC/ODBC to Microsoft Access successfully. After that, I make a query to select rows from Microsoft Access, and I write these results to a TXT file. Everything is OK, but I ...
1
vote
1answer
65 views
Getting started with JDBC
I was getting started with JDBC and I was using the video mentioned here: http://www.youtube.com/watch?v=kxi-H7359LA
Although he is good at the start, he becomes confusing towards the middle.
...
1
vote
1answer
198 views
Jdbc-odbc bridge with ms access don't understand greek characters?
I hava a java appl , i can make connection between my ms access database and my appl but when i write greek character in a textfield then my database appears disunderstandings characters. If there is ...
0
votes
1answer
2k views
Microsoft Access and Java JDBC-ODBC Error
Trying to insert some values in a Microsoft access database using java.
I can an error however,
java.sql.SQLException: [Microsoft][ODBC Driver Manager] The specified
DSN contains an ...
2
votes
4answers
185 views
What does forName() method in the Class class do, when loading jdbc:odbc driver?
I am learning to enable my Java application to communicate with a MS Access database.
I am unsure of one method, the Class.forName() method. The parameter I pass is "sun.jdbc.odbc.JdbcOdbcDriver", ...
0
votes
0answers
112 views
MS Access .mdb-file >To> OBDC >To> JDBC >To> Middleware
I'm in a tough situation and I'm not a MS SQL/Access specialist at all. What I need to achieve is the following:
I have a .mdb MS Access file that needs to be available for connection to a piece of ...
0
votes
0answers
203 views
Google Cloud SQL and ODBC
I understand that Google Cloud SQL can be access through JDBC externally, that's nice, but I have been using various SQL GUI clients to view and manage mostly MySQL databases. Tools like Navicat, ...
2
votes
4answers
136 views
What Java and/or C# frameworks are avaiable to implement SQL server accessible via ODBC/JDBC? [closed]
I need to figure out how to create server which behaves like SQL server in respect of accepting connections via ODBC, JDBC, etc, but implemented by me on C# (and/or Java) I.e. I don't want to create ...
0
votes
2answers
297 views
Need help to connect the awt app with MS Access database
I have developed an awt program and now i am trying to connect it to the MS Access Database using ODBC bridge.
Here is the code :-
import java.awt.*;
import java.awt.event.*;
import ...
0
votes
1answer
105 views
Getting some error while trying to retrieve Foreign key using Java
here "path" variable is having address of Database, and "tb" is the Table Name from the database.
here I tried to retrieve the foreign key columns and super tables from tables
Connection con = ...
1
vote
2answers
561 views
ora 12505 Error listener refused to connect
import java.util.*;
import java.io.*;
import java.sql.*;
public class Stud
{
public static void main(String args[])
{
try
{
...
0
votes
0answers
51 views
JDBC-ODBC hotspot, dlls appear to be accessble [closed]
Wrote a simple Java test program to try and connect to a third party library using the vendor provided DLLs. I can connect with Access, the Windows ODBC console also passes it's test.
The Java ...
0
votes
0answers
137 views
What is the only One open statement per connection limitation in JDBC-ODBC Bridge?
Can someone explain/elaborate the following limitation mentioned on the JDBC ODBC FAQs list
-Does the JDBC-ODBC Bridge support multiple concurrent open statements per connection?
No. You can open ...
1
vote
1answer
131 views
Are SQL concatenations possible using the JDBC to ODBC bridge?
When I run a query using concatenation of fields in MS Access I can write the following and it works fine:
SELECT e.FirstName + " " + e.LastName + " " + e.MiddleName AS Attendant FROM (EMPLOYEES e ...
0
votes
0answers
71 views
Exception in Jdbcodbcfinalize()
Hi I have a java program which connect to db2 using jdbc:db2:databasename userid and password. However when I am running my program it is throwing following exception in finalizer.
...
2
votes
4answers
654 views
Are any JDBC drivers installed as default with Windows?
I'm writing a Java program that retrieves data from an MS Access database. My code is as follows:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String url = "jdbc:odbc:Driver={Microsoft Access ...
-3
votes
3answers
264 views
Google Analytics - JDBC or ODBC driver
Is there a JDBC or ODBC driver that connects directly to Google Analytics?
Thanks,
2
votes
1answer
1k views
connecting to a data source phpstorm
I'm trying to connect PHPStorm to the database on the server of my website, hosted on a Linux box at BlueHost.
In order to do this, I clicked the Data Sources tab on the right side of the screen, ...
1
vote
1answer
283 views
How to connect to Oracle DB in Solaris OS using JDBC?
I'm trying to write a java code to connect to an Oracle9i Enterprise Edition Release 9.2.0.4.0. My machine is windows XP. The Oracle DB OS is Solaris 8. What I've done currently are:
...
1
vote
0answers
159 views
Connecting a Java Application through ODBC to an Unknown SQL Data Source
I have written a Java application where it should connect to "any" SQL based data source/database through Microsoft's ODBC connection and run SQL queries. I used the native Sun/Oracle JDBC-ODBC ...
0
votes
0answers
972 views
JDBC-ODBC Connecting to Excel
I'm trying to access a Microsoft Excel file via Java by using the sun.jdbc.odbc.JdbcOdbcDriver. However, I keep getting : "java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not ...
-1
votes
2answers
210 views
JDBC-ODBC not found exception
I'm trying to access a Microsoft Excel file via Java by using the sun.jdbc.odbc.JdbcOdbcDriver. However, I keep getting ClassNotFoundException.
try
{
...
2
votes
1answer
101 views
Viewing SYS schema tables of JBoss EDS/Teiid VDB
Can someone help me understand how to expose the SYS schema objects of a JBoss Teiid Virtual Database when connected via an ODBC-JDBC bridge ?
The client is connecting to ODBC side of the bridge and ...
1
vote
1answer
562 views
Access (.mdb) Database manipulation with jdbc
Background: Working on an application to be run on an Apache server hosted by Network Solutions. Friend/Customer insisted on using an Access Database instead of SQL database.
Current Problem: Wrote ...
3
votes
2answers
2k views
java.sql.SQLException: General error
Getting java.sql.SQLException
java.sql.SQLException: General error
at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6986)
at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
at ...
0
votes
2answers
304 views
How do I connect to access database using java at runtime? [duplicate]
Possible Duplicate:
Accessing Access over JDBC (using ODBC?)
I have to do this since we have an unknown amount of access databases the user can select using our program so as to process ...
1
vote
1answer
572 views
JDBC/ODBC connection to Informix with Openoffice BASE on Windows 7. Will not show table lists
I've attempted this with ODBC drivers, and JDBC drivers. I'll list both approaches separately.
ODBC approach
I'm using the ODBC driver found here:
...



