Search Results

-1
votes

Concurrent process inserting data in database

An often used system is to have a primary key that is a UUID ( Unique Universal ID ) and a UUIDGenerator, see http://jug.safehaus.org/ or sim …
0
votes

Preventing SQL injection without prepared statements (JDBC)

Prepared Statements dont care about client or server side Use them and drop any sql string concatenation, there is not a single reason to not use Prepared Statements …
-2
votes

JDBC: How can I query by time in Oracle?

all your question about jdb: http://java.sun.com/docs/books/tutorial/jdbc/index.html If you want …
2
votes

Multithreading in JDBC connectivity

Your webserver is inheritly multithreaded, that saves you from implementing you own threads to handle the uploads. Do however make sure that multiple requests dont use same resources (dont write al …