Tagged Questions
1
vote
3answers
47 views
Insert only if row doesn't exist
I am using PreparedStatement to prepare sql queries. I want to insert a row in table if and only if it doesn't exist.
I tried this -
INSERT INTO users (userId) VALUES (?) ON DUPLICATE KEY UPDATE ...
-1
votes
2answers
31 views
Save is not performing in Spring Mvc 3Hibernate
Article class:
package net.devmanuals.model;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import ...
0
votes
0answers
22 views
OpenJPA Enhance — The identity field defined in the {0} Embeddable is not supported
I am using the following JPA code with MySQL DB and OpenJPA 2.2.2:
@MappedSuperclass
public abstract class IdentifiableEntity implements Serializable {
@Id
@GeneratedValue(strategy = ...
1
vote
1answer
34 views
What is the MySQL SQL REGEX for this regex
Regular regex:
foo(\((\d{1}|\d{2}|\d{3})\))?
This regex works in Java:
foo(\\((\\d{1}|\\d{2}|\\d{3})\\))?
Examples:
fooa //no match
foo(1)a //no match
foo(a) //no match
foo(1) ...
-3
votes
0answers
24 views
Java Registration PHP, mysql [closed]
I have made a program in which you log in and it gets the info of your username and password from the database. It is the first time ever doing this so I assume you must protect the data somehow when ...
0
votes
6answers
66 views
How to return two different values using only one method? [duplicate]
How can I return two different type of columns (int , string) separately in a MySQL table? I have tried using this code but I can't figure it out. Please kindly, can you tell me what's wrong?
please ...
0
votes
1answer
32 views
Solr 4.3.0 Http Status 500
OS: Ubuntu 12.04
I just upgraded my system from using Solr 1.4 to Solr 4.3.0 and can't seem to get the MySQL driver to work (or so I suspect). Solr seems to work fine (accessing it through the ...
0
votes
0answers
29 views
Using Java to save a few UTF-8 strings without opening separate MySQL connection
I use Java syntax such as
PreparedStatement s = connection.prepareStatement("insert into table set text=?");
s.setString(1, "¡dn ʇǝƃ ʇ,uɐɔ ı puɐ uǝllɐɟ ǝʌɐɥ ı `dlǝɥ");
s.executeUpdate();
on the ...
0
votes
2answers
42 views
Join of two tables as to get entire records
I am creating two tables .Table 1 has following schema
user_id int not null,autoincrement
movie _id int not null
movie_name varchar
user_name varchar
...
0
votes
1answer
42 views
how to embedd mysql in grails standalone application
I am creating a grails standalone application with with embedded tomcat server
the application works fine with embedded tomcat server.
But i need to integrate embedded mysql with the application.
Any ...
-1
votes
1answer
27 views
Refreshing jtable [duplicate]
I've created a jtable which can load data from tables in the database, im trying to show all updated or new records captured with a refresh button. Im using java, swing and mysql as my database.
1
vote
1answer
65 views
How to connect Android app with MySQL database through PHP
I am still a little skeptical as to how to connect my Android app to a PHP script. I saw somewhere that the following code will connect the app to the server. But I am new at android so I do not know ...
1
vote
1answer
24 views
Checking for usename in mysql …If it exist then inserting into other table Otherwise the base table
Well i have the following table Table1 in MySQL workbench--
user_id int not null,autoincrement
movie _id int not null
movie_name varchar
user_name ...
-3
votes
0answers
23 views
JDBC Connection error To MySQL Database inside index.jsp script [closed]
I am trying to test a connection and database post using the script below from a index.jsp file, but it is not writing into the database.
I am a Delphi / Pascal developer but do not know anything ...
1
vote
1answer
37 views
Retrieve a Regex Pattern from a MySQL table
I have a table in MySQL containing regex pattern such as : FILE\\\\d{1,4}.
But while trying to retrieve the pattern value with a Java code, it seems like the value is not in the good format.
How can I ...
0
votes
0answers
28 views
Best way to store which modules are purchased
First I would like to explain what is the whole picture of my problem.
I have a desktop application built in java (about 90% done so far) with multiple modules that can work by themselves or combined ...
-3
votes
0answers
36 views
Regular Expressions: Returning the string doubled from MySQL database [closed]
I have a problem:
I have multiple articles in a database: All articles are in one table cell divided by a - (minus sign):
Example: This is article Article 1 - This is article Article 2 - This is ...
0
votes
0answers
18 views
Android Phonebook Saving on Mysql remote Database
On my Android app i want to save all my phonebook contact on mysql remote database.
I use this script and it work great:
http://netlifeblogs.blogspot.it/2013/05/rubrica-android-in-arraylist.html
but ...
-1
votes
1answer
48 views
XML File to mySql [closed]
I have an XML file with various tables, written into it using Java the structure of the file is as follows:
<?xml version='1.0' encoding= 'UTF-8' standalone='yes' ?>
...
-1
votes
3answers
49 views
Pass an Object to other class [closed]
I'm having some problems with java, and I hope somebody can help me with this question.
I have a login page, and after the user login on this page, the information of this login page goes to a object ...
0
votes
2answers
70 views
Check if a table exists in a database [duplicate]
I am making a program where I would read data from excel file and store them in tables. Each table would have the name of the file and the data that are in the file.
At the beggining of the program I ...
0
votes
2answers
35 views
executeUpdate(String, int) method in Statement always returns 1
Can anybody tell me why the below method (executeUpdate) is always returning 1 even if I have specified to return the generated key in it? I want to get the generated key in generatedKey variable. It ...
1
vote
2answers
30 views
create one to many relation using jpa(MYSQL)
Hi this is my table structure two tables roles and component.
+----------------+
| role |
+----------------+
| role_id : PK |
| role_name |
| role_desc |
...
0
votes
1answer
57 views
Check for given username existence in database at time of insertion in MySQL
How to check for given username existence in database at time of insertion in MySQL in Java?
I have the following table in MySQL workbench--
user_id int not null,autoincrement
movie ...
0
votes
1answer
32 views
I can't delete from my SQL database using JTable
So... I want to delete a row from by database using a JTable, but I don't know why it doesn't get deleted, maybe the sintaxis of the DELETE isntruction is wrong...
borrar.addActionListener(new ...
-1
votes
0answers
29 views
Java Swing App: Integration with C3P0? [closed]
I'm working in a Java Swing application (it's a small ERP using eclipse+mysql+windowbuilder+spring). I want to integrate C3P0 library, but the point is it is neccesary to do it, because I know this ...
0
votes
2answers
27 views
Change the default names of foreign keys in one-to-many mapping : HIBERNATE
I have a one-to-many mapping, which maps a user(UserDetails) to an ArrayList of Vehicles. I want to know whether it is possible to override the default foreign key name which references the id of ...
2
votes
2answers
73 views
MySQL Deadlock MySQLTransactionRollbackException in Java Concurrent Application
//Table Structure//
Create Table: CREATE TABLE `smsLog` (
`aUnique` varchar(30) NOT NULL,
`aMsgId` varchar(50) NOT NULL,
`uid` varchar(30) DEFAULT NULL,
`aClubUnique` varchar(30) DEFAULT NULL,
...
-1
votes
5answers
51 views
How to store multiple records in to a single id? [closed]
Here's my doubt.. If we go to a retailer, we will purchase a list of groceries and he will come up with a bill with single Purchase id. if he in future inquired about that particular Purchase id, then ...
0
votes
2answers
25 views
SQL Error when tried to enter data using netbeans
First, I'll give the codes I'm dealing with.
Action code for the "Save" Button.
private void saveBtActionPerformed(java.awt.event.ActionEvent evt) {
...
1
vote
2answers
31 views
Changing the generated name of a foreign key in Hibernate
@OneToOne()
@JoinColumn(name="vehicle_id", referencedColumnName="vehicleId")
public Vehicle getVehicle() {
return vehicle;
}
My UserDetails class has a one-to-one mapping with the Entitity class ...
0
votes
3answers
54 views
MySQL - Iterating over columns in a result set
I'm working on a project where a user can assemble the components of a yoga class. It's spread across several files and thus too large to put it all here. The trouble I'm having is in one method ...
0
votes
2answers
51 views
Re-Execute DB update Query When Exception Occurs
I want to re-execute the query whenever SQLException occurs and sometime I get the Exception of
SQLException occurred... com.mysql.jdbc.exceptions.jdbc4.
MySQLTransactionRollbackExceptionDeadlock
...
0
votes
0answers
32 views
Display Blob Image using primefaces
I want to display blob type image using primefaces. There is a error in the server log, and the page is displayed without the picture. I used the following code.
Html code =
<h:form ...
0
votes
1answer
28 views
Prevent user from editing the same record
I'm developing a Multiple user application on same network usign MySQL & Java.
What I'm looking for is:
User A: Modifying Record 100
User B: Try to view or modify same record 100.
I want the ...
2
votes
1answer
34 views
Hibernate is creating one more table in addition to the required table
@GenericGenerator(name="hilo-gen",strategy="hilo")
@CollectionId(columns={@Column(name="address_id")},
generator="hilo-gen",
type=@Type(type= "int")
)
...
1
vote
1answer
48 views
SQLException: No suitable driver found for jdbc:mysql://localhost:3306/dbname
I've inherited a project (and I have absolutly no experience of Java) and I'm rather stuck.
We have a server running redhat, which I needed to update one of the jar files. So I simply copied up the ...
0
votes
1answer
54 views
Getting Null pointer exception when returning from mysql query
Controller class call:
List<FOO> fooList = fooDao.getFooList(String.valueOf(branchId),customerId,String.valueOf(systemIndex));
Dao class method that gets invoked:
public List<FOO> ...
0
votes
0answers
47 views
JDBC only returns one row when multiple should be returned?
I'm trying to run the following query via JDBC:
String sql = "SELECT * FROM myTable ORDER BY someCol ASC LIMIT 30";
PreparedStatement st =
connection.prepareStatement(sql, ...
1
vote
1answer
38 views
Best (performance-wise) way to store timestamp in mysql
I have a java application that records timestamps for events. The problem I faced was that there are often a large volume, and having java calculate and format the datetime was too costly for ...
0
votes
1answer
26 views
Entitymanager, too many connections
I create only one session factory for the whole progamm and create everytime i want to persist/update/query smth. an new entity manager but i get always an to many connection error. Can anybody give ...
0
votes
0answers
31 views
sql store procedure being called by multiple processes
Using: MySql server.
I'm in a situation where I need to check if a customerId exists before registering the user in a batch application.
The problem is that different thread/process of the same ...
0
votes
2answers
28 views
Working with latitude/longitude values in Java/MySQL
I have a database table containing location latitude and longitude. I am given following values latitude, longitude, minX, minY, maxX, maxY. I need to return all the records from database table whose ...
3
votes
2answers
67 views
How can I sort excel file by the first column? java
i have to make a program where we read data from excel files as the one here and store them in a table in mysql with descending ID.
I have made the program to read the data and print them in console ...
2
votes
2answers
40 views
What might be wrong with this JSP
conn = DriverManager.getConnection(
"jdbc:mysql://localhost:3306/ebookshop", "root", "");
XAMPP is hosting MySQL on 3306
I linked the mysql connect jar
ebookshop is the name of a DB
...
-5
votes
0answers
33 views
Implement multithreading for inserting data in database in batches [closed]
Implement multithreading for inserting data in database in batches
plz help me to resolve the above issue
i am doing it in eclipse using srings and jdbc
-1
votes
0answers
32 views
How to populate values from an HTML form to MySQL worbench [closed]
I am creating a recommendation engine and new to the concepts of jsp and servlets .
Well firstly user will input his details that is the movie name and the rating he has given to the movie.
Now i ...
0
votes
2answers
29 views
The Position of tables in hibernate
How can we configure hibernate annotations in the Entity class so that columns are created in a specific order.
Example : id is the first column, lastName second, address third, etc. Using a Mysql ...
0
votes
1answer
19 views
I'm getting java.lang.ExceptionInInitializerError when I connect to JDBC
I'm running a server using Tomcat 7.0 in Eclipse.
I have a html file to link to a Servlet file, which has a form to input the value.
When I input any value in the html file, it forwards to the servlet ...
-2
votes
0answers
34 views
Web application using Java, mysql? [closed]
I used to program a little bit before in java a few years ago and I want to get back into it, but mysql I am completly new.
I would like to do an web application with java. The users should be able ...



