SqlException is thrown when ADO.NET encounters a SQL Server related error.
0
votes
0answers
8 views
ResultSet is getting closed on executing CallableStatement.getInt() method
Snippet:
proc = connection.prepareCall("{ ? = call MyPocedure() }");
proc.registerOutParameter(1, Types.INTEGER);
proc.setQueryTimeout(timeOut);
rs = proc.executeQuery();
int returnCode = ...
2
votes
2answers
59 views
Java SQL Exception Invalid Cursor State - no current row
I've been having a hard time trying to figure this out. First I have an insertProduct(Product p) method that is supposed to check if a product with the specified code exists in the database. If so, ...
0
votes
2answers
94 views
java.sql.SQLException: Numeric Overflow while using IN operator
I implemented a Java application which queries a database based on given set of ids using the query:
select * from STUDENT where ID in (?)
The set of ids will be used to replace ?. However, ...
1
vote
1answer
50 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
29 views
MS Access connectivity in java
I am writing a program in java for flashcards.I have an init class which launches the main JFrame. From there I have buttons to access frames to do tasks like add cards, study and help.I have written ...
0
votes
1answer
34 views
JFreeChart using numeric query ORACLE ERROR
I was trying to make a query like in that topic: JFreeChart using numeric query ORACLE
to generate a barchart, but i am always receiving that error: java.sql.SQLException: ...
0
votes
0answers
5 views
OCCI SQLExceprion & terminateConnection
I'm new in OCCI programming and I have one question.
I'm writing a Linux daemon, which connetcts to an Oracle database. Sometimes database server breaks connection(or db admin kills session), in that ...
2
votes
2answers
44 views
validating JTextField data from result set
I am trying to setup a login system where when a user enters his username and password and presses the login button, his username and password are sent in an SQL statements to be matched with a User ...
0
votes
0answers
51 views
Incorrect syntax near 'int' when using updatecommand on a gridview
I have a problem that when ever I try to update a record in the database using gridview update event handler and an updatecommand in sqldatascource
I get the following exception
Incorrect syntax near ...
0
votes
1answer
37 views
Mysql&MSAccess: insert into table which have an incremented field
I am sorry if there is a duplicate but I tried all ways still I can't do the insertion.
I have a table with only two fields ( ID , Name )
When I run this SQL code it must be insert a new record and ...
-1
votes
0answers
66 views
SQL Server: Login failed for user
I have a problem connecting to a SQL Server database from my ASP.NET web application. There are a good number of similar posts here, but none have helped me. This issue has not only me but the rest of ...
0
votes
3answers
209 views
java.sql.SQLException: Parameter index out of range (2 > number of parameters, which is 0)
public class Brothers extends javax.swing.JFrame {
/**
* declaring connection and SQL statement
*/
Connection cn;
Statement st;
PreparedStatement pstmt=null;
...
0
votes
0answers
81 views
Reference cursor of Resultset.next() throws- java.sql.SQLException: statement handle not executed
I am experiencing an issue while calling oracle store procedure has reference cursor as output parameter.
Everything works well when we have small no of records return by query in procedure but when ...
1
vote
2answers
76 views
SQLException in Windows forms application
At the very begining please allow me to convey my regards and respect to everyone from StackOverFlow and all the users. You guys are doing a great job helping out people like us. Thankyou.
Now to my ...
0
votes
2answers
112 views
Hibernate save data to database SQLException
The following error is thrown when I try to save the data to the database which uses Hibernate for persistence mechanism.
java.sql.SQLException: Field 'user_id' doesn't have a default value
at ...
1
vote
1answer
139 views
Azure Geomentry type throws exception Could not load file or assembly microsoft.sqlserver.types, Version=11.0.0.0
I'm hosting Restful service on Azure. It worked fine. But today I obtained that methods with Geometry type using throws an exception. What interesting that I didn't update anything.
I used NuGet ...
4
votes
2answers
91 views
SQL ERROR: Closed Connection in java
Connection is closing automatically even if i'm not closing in finally block.
public String look( long id, String codeName, Connection conn ) throws SQLException
{
try
{
...
1
vote
2answers
122 views
java.sql.SQLException: column id is not unique
I have a program written in Java which parses a set of files and places information about them inside a database using sqlite. The code seems to work fine for a while until one day I get this ...
0
votes
2answers
36 views
SqlServer Exception Encountered “VARCHAR”
I'm getting this error that doesn't allow me to create a table. It says that there is a syntax error.
Code:
@Override
public void create() throws SQLException {
String sqlString = String
...
1
vote
1answer
51 views
MySQL: Set session var to NULL on SQLException
I have a before insert trigger on table 'a', which essentially duplicates and translates the query for insertion into table 'b'. Here's an pseudocode example of this trigger:
FOR EACH ROW
BEGIN
IF ...
-2
votes
1answer
61 views
Exception always thrown in method called from JSP page
Here is a test query that I know works and returns 14.
private static final String TEST = "SELECT album_id FROM Album";
Every time I execute the following method, the exception is thrown and the ...
0
votes
0answers
32 views
Why Ebean replace a column by t0.null in createQuery()?
I have three models :
@Table(name = "meals")
public class Meal extends Model {
@Id
private Long id;
private String name;
@ManyToMany(targetEntity=Allergy.class, mappedBy="meals")
...
2
votes
1answer
40 views
SQLException: No suitableDriver found
This is one of the most topics, but no other on stackoverflow fits.
My enviroment is a Tomcat 7 with a JNDI-DataSource defined in context.xml. When i start my Tomcat the following exception is ...
0
votes
1answer
65 views
SqlException was unhandled C# (cell value changed)
I want to change a value from the cell (grid view ).When I change the value , I'm getting "SqlException was unhandled In correct syntax near '=' "error. I debugged the code I entered 50 to the cell ...
2
votes
3answers
161 views
sqldatetime overflow exception c#.NET
string con = ConfigurationManager.ConnectionStrings["connectionString"].ConnectionString;
SqlConnection cn = new SqlConnection(con);
string insert_jobseeker = "INSERT INTO ...
0
votes
0answers
27 views
ResultSet throws SQLException in db2
I am unable to access the table contents in db2.
ResultSet throws SQLEception
My code is:
<%@page import="java.sql.*" %>
<%@page import="java.io.*" %>
<%
try
{
...
0
votes
2answers
126 views
java.sql.SQLException: could not use local transaction commit in a global transaction
We are having two instances of oracle (two physical machines) and one schema for our application.
we are using weblogic application server. application uses datasource for which XA transaction is ...
0
votes
0answers
46 views
Difference between two SQLExceptions (“A transport-level error..” and “A network-related or …”)
I have a bunch of users on my WPF/Linq2SQL application and I log all their exceptions at the database in a separate connection (which I create efter the exception has been thrown).
Occasionally I get ...
0
votes
0answers
39 views
What's happening inside SqlDataAdapter.Fill()?
SqlDataAdapter.Fill() seems to do a bunch of different things under the covers. I'm using it to populate a dataset, but how is it managing the sqlConnection and sqlCommand objects? If there is a ...
0
votes
1answer
488 views
Must declare the scalar variable “@id”
I know this question has been asked like a thousandth time. But the solutions given do not work for me.
I have a very simple stored procedure like below:
alter procedure ...
0
votes
1answer
197 views
How to know which entity caused SQL Exception
I'm using hibernate with spring to create a restful service app. I want to return an error message when an operation fails. For example while creating an account if a duplicate primary key is ...
0
votes
1answer
201 views
java.sql.SQLException: Parameter index of 9 is out of range (1, 8)
I have a requirement where I have to call a MySql Stored Procedure with three IN parameters and 6 OUT parameters.
PROCEDURE
DELIMITER $$
DROP PROCEDURE IF EXISTS GET_PRODUCT_INFO $$
CREATE ...
3
votes
4answers
89 views
Why is android.database.SQLException unchecked?
This might be unsuitable for SO since it isn't really a coding-problem, but I couldn't find a satisfying answer yet and I believe the SO-community can.
So, by definition ...
0
votes
1answer
94 views
Unreported exception SQLException; must be caught or declared to be thrown error
This allows me to grab data from my database, store it as a DefaultTableModel and pass that model onto my GUI - populating my jTable with database data.
This is the method within my Account class:
...
3
votes
4answers
121 views
SQL exception while selecting the columns with alias names
My SQL query is
cmd = new OleDbCommand("select vchr_No as voucher No, vchr_Date as Date,
vchr_Acnthd as Debit, vchr_Prtynm as Paid to
from cshvchrs ...
0
votes
1answer
846 views
ORA-01861 literal does not match format string on SELECT statement
Good day.
I am executing a query and encountering:
ORA-01861 literal does not match format string error.
I executed this query and IT WORKED.
SELECT * FROM GCACC_OPERATION_DETAIL WHERE id_notice ...
5
votes
1answer
131 views
Changing my query and causing SQL exception
I'm lovin MiniProfiler for our .NET project. However, I'm running into an issue. The profiler is actually causing queries to be slightly different which is causing errors. For example, when the ...
0
votes
1answer
105 views
Invalid object name 'dbo.Infoes' when retrieving data from DB using EF
I'm really a beginner to MVC. I've made view that simply retrieves data from a table named Info using this code
Controller :
namespace FP.WebUI.Controllers
{
public class HomeController : ...
3
votes
2answers
230 views
java.sql.SQLException: Incorrect string value: '\xAC\xED\x00\x05sr…'
I have code looking like that:
@Column(name = COLUMN_DESCRIPTION, columnDefinition = "LONGTEXT")
private Map<Locale, String> description = new HashMap<>();
after trying to add ...
0
votes
2answers
194 views
java.sql.SQLException (using password: NO)
I'm attempting to connect to my server's MySQL, yet I keep running into the same issue and cannot find a similar problem. My code snippet is below:
public class MySqlDatabaseHandler {
Connection ...
0
votes
1answer
229 views
how do I fix SqlException Time-out occurred while waiting for buffer latch type 2 for page (1:37660679), database ID 10
I was running an application for a few hours and then suddenly:
SqlException was unhandled by user code:
Time-out occurred while waiting for buffer latch type 2 for page (1:37660679), database ID ...
1
vote
1answer
58 views
What is the best component to use, If I want to create a table from my talend job?
From my job, I am trying to create a Table ( if not exists ) with selecting few records by joining few tables ( like create table xx select * from t1 inner t2 etc ), from my talend job. I am ...
-1
votes
2answers
113 views
Why am I getting ResultSet is closed error when I never closed any
I have this error in my code and have checked and edited it thoroughly, yet I still get same issue. I also use multiple resultSet and Statements yet same error occurs. Below is the error I get:
...
0
votes
3answers
405 views
Java: Missing Database error
I am getting the following error:
java.sql.SQLException: [SQLITE_ERROR] SQL error or missing database (no such table: apartments)
In reality, the table does exist. The following is my code:
try {
...
0
votes
1answer
112 views
Customize Sql Exception message in catch
I ´m doing a form where the user can Insert/Delete/Add entities. I´m using Winforms c# and entity framework 4.
Ok, the user can delete objects. Now, those objects can be referenced by other entities, ...
2
votes
2answers
336 views
java.sql.sqlRecoverableException: Closed statement: next
My code throws
java.sql.sqlRecoverableException: Sentencia cerrada: next
which, in English, I guess it would be:
java.sql.sqlRecoverableException: Closed statement: next
This is my code:
public ...
2
votes
3answers
621 views
Receiving SQLException “Login failed for user” connecting to SQL Server 2008
I am trying to connect to SQL Server 2008 via Java.
I've added sqljdbc4.jar to my project's library.
No username and password is set for database accessing the database (Windows Authentication).
The ...
0
votes
0answers
102 views
Connection to a JDBC returns url cannt be empty
Hello i've got this code:
DatabaseManager.init("com.inet.tds.TdsDriver", "jdbc:inetdae:127.0.0.1?database=main", "username", "password", 10);
which links to:
public static void init(String ...
0
votes
1answer
207 views
Exception - java.sql.SQLException: Operation not allowed after ResultSet closed
I am getting an exception like as
java.sql.SQLException: Before start of result set when calling getInt() method
My code is as follows:::
public void setdateTOSource(){
try{
String q ...
0
votes
2answers
141 views
Inserting each value from int array into database - Java
What i have is a multi-select Jlist box which the users selects several features. I grab the ID of these and store them into an int[] array.
What i am trying to do with these is insert them into my ...






