| Thread | Last Post | Replies |
|
| How to set number of collumns and rows in JTable after JTable object was created? | 29 Apr 2006 00:44 GMT | 1 |
Hi, i have problem with JTable. I have to reuse JTable object after it was previously created. I don't know how many rows it must contains at the moment of creation, so I could not use default constructor JTable(int col,int row). Is it possible to dynamically set size of the
|
| sql select question | 28 Apr 2006 15:45 GMT | 4 |
this is more of an SQL question than a Java question. I have a table with a SPEED column and some other columns like this: SPEED SOME_OTHER_COLUMNS.... ----- ------------------
|
| Connect To MySql Using Port | 28 Apr 2006 10:56 GMT | 2 |
Hi Friends, I Want To Make A Connection To MySql Server Without Using The Driver, I mean to say by using java socket (Port Connection) programming . Can I do this ? If Yes How ?
|
| SQL Server Driver | 28 Apr 2006 10:50 GMT | 1 |
I want to use SQL Server driver to access database. Currently I'm using jdbc:odbc driver bridge. Is there faster driver than bridge driver? I tried with "com.sun.sql.jdbc.sqlserver.SQLServerDriver" class. but it shows invalid driver message.
|
| Using SUM and GROUP BY | 27 Apr 2006 16:41 GMT | 3 |
I have a table that stores hours, minutes, seconds and quantity. I can find the quantity per hour by selecting hours and quantity and group by hours with a sum for the quantity. However if I want minutes I need to multiply the hours by 60
|
| MSAccess get Query SQL source possible | 27 Apr 2006 16:25 GMT | 6 |
Hi... for diagnostic purpose I would like to get the Query SQL source code out of MSAccess, preferrably using special SQL (e.g. with SQLServer you can do exec sp_helptext "'MySP'") or COM if necessary. Is there any way to
|
| UnsatisfiedLinkError | 27 Apr 2006 13:49 GMT | 6 |
I'm trying to debug a simple Java UDF (User Defined Function) written in the DB2General style within Eclipse. I'm getting a java.lang.UnsatisfiedLinkError when I execute the set() method
|
| xml property file...for say db connections? | 27 Apr 2006 13:40 GMT | 4 |
I have code that connects to MS Access *and* code which connects to an Oracle database. Does anyone have a code snippet which reads an XML file to extract properties I can use to dynamically determine my configuration.
|
| Database and java.sql.SQLException Questions | 27 Apr 2006 11:09 GMT | 6 |
Hello everyone!! I am back for some more much need advice and assistance! I am creating a database for the first time. I am changing some programs I recently wrote to work with this database that have to do with Salesmen. I am getting the below error when I compile ...
|
| Reflection with Java and Oracle 10g | 27 Apr 2006 03:32 GMT | 3 |
We have change oracle 8i to oracle 10g, now we have problems with the reflection in JAVA. I've got an IllegalAccessException: Object value;
|
| Hibernate and session | 27 Apr 2006 03:27 GMT | 1 |
While reading hibernate quick start with tomcat, I found that developer need to write their own HibernateUtil to manage sessions. Shouldn't it be automatically handled by framework? Thanks
|
| MSAccess without ODBC | 26 Apr 2006 16:55 GMT | 2 |
I vaguely recall a JDBC-ODBC bridge or something. Anyone know if I can supply a MS Access database and a Java Driver which accesses it directlly without a need for ODBC data source to be created? thanks
|
| SQL CREATE TABLE ERROR | 26 Apr 2006 03:50 GMT | 1 |
Im trying to create a table in an access database using java. When I used "CREATE TABLE tblTable (time number)" it works fine. However when I try "CREATE TABLE tblTable (time number, to_place number)" I get the following error.
|
| java.sql.SQLException:ORA-00904 | 25 Apr 2006 17:55 GMT | 1 |
I am getting below error while executing my query in java program however when I run the same query on Toad/ sqlplus the query runs fine resulting the desired results. java.sql.SQLException: ORA-00904: : invalid identifier
|
| Is "From" a legal col name. | 21 Apr 2006 00:49 GMT | 6 |
This is not really a java question, but java is my platform so I'm here. Is "From" a legal column name? Doesn't seem so... I get a syntax error exception. But I've inherited a database with a From column. What can I
|