comp.lang.java.databases
  Home FAQ Contact Sign in
comp.lang.java.databases only
 
Advanced search
December 2008
motuwethfrsasuw
1234567 49
891011121314 50
15161718192021 51
22232425262728 52
293031     1
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007 2006  
total
comp.lang.java.databases Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  JavaGolmine site has been updated http://javagoldmine.by.ru/index.html         


Author: Labyrinth
Date: Dec 25, 2008 00:25

JavaGoldmine site is updated.

http://javagoldmine.by.ru/index.html

It contains over 50k articles in 50+ categories on all Java topics,
including code snippets, examples and expert views and opinions.
no comments
  the comparison between options for connecting to MS SQL         


Author: mttc
Date: Sep 21, 2008 14:15

what driver or lib considered as best performance for connection Java
to MSSQL?
Have some comparison between connect from Java JDBC vs Native SQL
access from .NET?
no comments
  job details free         


Author: revathi
Date: Sep 18, 2008 07:57

no comments
  [Announce] 9/30 Customer Webinar: DataFlux - Quality is #1         


Author: DataDirect Technologies
Date: Sep 17, 2008 11:43

[Announcement]
Tuesday, 9/30/08 11:00 AM EST
Register Now!! ( https://datadirect.webex.com/datadirect/onstage/g.php?t=a&d=717332054
)

Want to hear from a DataDirect customer how they use DataDirect XQuery
and DataDirect XML Converters? and why? Maybe you have a similar need
and DataDirect's XML products can help you.

Join our upcoming webinar, and hear the DataFlux story - presented by
Scott Gidley, co-founder and CTO of DataFlux. He will discuss how
incorporating DataDirect's XML-based products into their dfPower
Studio and DataFlux Integration Server has allowed them to quickly
expand their markets by providing support for non-relational formats
and industry vertical standards such as HL7 & ACORD.

Register Here: ( https://datadirect.webex.com/datadirect/onstage/g.php?t=a&d=717332054
)

Sincerely,
DataDirect Technologies,
( http://www.datadirect.com )
no comments
  reading stored procedure SQLs via JDBC         


Author: hgohilgroups
Date: Sep 17, 2008 11:01

Hi Experts,

Is there a way to read back Stored Procedure's SQL statements using
JDBC from existing Database.
I am thinking of migrating from one database to different database.

Thanks
HG
2 Comments
  Software Articles Collection         


Author: jnmitts
Date: Sep 16, 2008 05:19

Hi Everyone. Here's the latest collection of software articles from
AllPCNews. Enjoy! :)

PHP - Web Application Development
http://www.allpcnews.com/2008/09/15/php-web-application-development/

Mozilla CEO: Chrome was Inevitable
http://www.allpcnews.com/2008/09/02/mozilla-ceo-chrome-was-inevitable/

Why Not Become a Game Programmer?
http://www.allpcnews.com/2008/09/15/why-not-become-a-game-programmer/

IQ Test Or IA Test?
http://www.allpcnews.com/2008/09/15/iq-test-or-ia-test/

The OSD Development Process
http://www.allpcnews.com/2008/09/15/the-osd-development-process/

Why Everyone Is Talking About Spyware Tools
http://www.allpcnews.com/2008/09/04/why-everyone-is-talking-about-spyware-tools/

Cheers,
Jan Mitts
no comments
  Java - Jobs, Interview Questions, Certification         


Author: Naveen
Date: Sep 12, 2008 08:39

Hi,

In the very fast moving IT Industry, there is a need for the people
to keep a note of what is happening in the field, what are the latest
Jobs available and in which technologies they are available and what
companies and also in which cities.

And also when applying for Jobs, it is obvious for people to look for
Interview Questions in their Technologies and if they are able to
find it all at one place, then they can concentrate on studying or
doing R&D further on those questions and answers available.

And for a better pay pack people are always in a mood of doing
certification and at that time they are on a lookout for
certification material and dumps and also if this is available in a
click or two, then they are the happiest people.

There is a Forum especially for the people from the IT Industry
prepared considering all the above mentioned points and it is

www.itjobguru.com/forum/index.php

And also the main features of the site are
Show full article (1.91Kb)
no comments
  Difference in JDBC results and Query Analyzer results         


Author: Tom Cole
Date: Sep 11, 2008 15:45

We're using jTDS to connect to a backend SQL Server 2000 instance. The
connection is working fine.

What we want to do is write a utility that will calculate maximum row
size for each table in a given database. The script we're using looks
something like this:

Connection con = Connector.getConnection(); //this works fine and has
been verified...
String query = "SELECT * FROM " + table; //general query to get
metadata...table is provided as argument...
PreparedStatement...
Show full article (1.90Kb)
7 Comments
  Java Toplink Essential - Change entities tables at runtime         


Author: nicola
Date: Sep 10, 2008 01:23

In my db there are some tables like

TABLE1_2006 (ID, CODE, VOLUME)
TABLE2_2007 (ID, CODE, VOLUME)
TABLE3_2008 (ID, CODE, VOLUME)

They are equal but have diffferent name. In fact these tables are
created
every year (as you can see).
In this sense they use the same entity

public class MyEntity implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(name = "ID", nullable = false)
private Integer id;
@Column(name = "CODE")
private String code;
@Column(name = "VOUME")
private String volume;
Show full article (0.74Kb)
6 Comments
  can I tell resultset size?         


Author: kishjeff
Date: Sep 5, 2008 08:13

Hi.

I'm using java 1.4.2 JVM talking via thin client to oracle 10.2.0.2 (I
think this db flavor is irrelevant though).
I have a statement that is normal (forward etc from generic
'java.sql.Connection.createStatement()' invocation).
I'm sure there should be results, but the invocation of:
"while (theResults.next()) " is not returning any rows.

I'm not sure how to troubleshoot this deeper, i.e. why I'm not getting
any rows back.

Can someone offer a pointer, advice etc?
thanks
Jeff
1 Comment
1 2 3 4 5 6 7 8 9