Tagged Questions
The sqlexception tag has no wiki summary.
15
votes
3answers
5k views
How to catch SqlException caused by deadlock?
From a .NET 3.5 / C# app, I would like to catch SqlException but only if it is caused by deadlocks on a SQL Server 2008 instance.
Typical error message is Transaction (Process ID 58) was deadlocked ...
11
votes
4answers
9k views
A list of common SqlException numbers?
What are the most common/useful SqlException numbers? I don't need the entire sysmessages table, just the typical or common errors you're likely to see in a data access layer so I can do sometihng ...
8
votes
11answers
6k views
How to throw a SqlException(need for mocking)
I am trying to test some exceptions in my project and one of the Exceptions I catch is SQlException.
Now It seems that you can't go new SqlException() so I am not sure how I can throw a exception ...
7
votes
3answers
5k views
What causes Timeout expired SqlExceptions in LINQ to SQL?
My application keeps running into Timeout Expired SqlExceptions. The thing is that this query is one that will simply have to run for a decent amount of time. I'm having trouble figuring out where ...
5
votes
8answers
682 views
Recommended approach on handling SqlExceptions in db applications
I work on a database application written in C# with sql server as backend. And for data integrity, I try to enforce as much as possible on database level - relations, check constraints, triggers.
Due ...
4
votes
1answer
94 views
Dapper dynamic parameters throw a SQLException “must define scalar variable” when not using anonymous objects
(This code is using Dapper Dot Net in C#)
This code works:
var command = "UPDATE account SET priority_id = @Priority WHERE name = @Name";
connection_.Execute(command, new { Name = "myname", Priority ...
4
votes
4answers
2k views
SqlException catch and handling
Q: Is there a better way to handle SqlExceptions?
The below examples rely on interpreting the text in the message.
Eg1: I have an existing try catch to handle if a table does not exist.
Ignore ...
4
votes
4answers
215 views
How can I get the actual SQL that caused an SqlException in C#? [closed]
Possible Duplicate:
Obtain the Query/CommandText that caused a SQLException
I am working on some error handling code (using elmah) and the default setup only sends the error message. I ...
4
votes
3answers
324 views
How to know actual problem because of which SqlException is thrown?
I want to handle different problems, while doing database operations, differently.
e.g. The operation may fail because of wrong database credentials or due to network problem. Or it may fail because ...
3
votes
2answers
331 views
RAISERROR―How to distinguish with SqlException?
I have some 3-4 stored procedures ― which I can modify if needed ― that use RAISERROR to inform my application of some fatal errors on the database side. Some of these stored procedures are executed ...
3
votes
2answers
505 views
How to get parameters from PreparedStatement?
I'm writing generic logger for SQLException and I'd like to get parameters that were passed into PreparedStatement, how to do it ? I was able to get the count of them.
ParameterMetaData metaData = ...
3
votes
3answers
795 views
SQL Server, C#: Timeout exception on Transaction Rollback
I've got a strange problem. I have a .NET program and my process logic needs a long-running transaction (~20min) on a SQL Server 2005 database. That's ok, since nobody accesses the database in ...
3
votes
1answer
2k views
Timeout exception when timeout set to infinite time
In my C# .NET 3.5 application I am using CastleProject ActiveRecord over NHibernate. This is desktop application using MS SQL Server 2008. I have set ADO command timeout to 0 to prevent timeout ...
3
votes
6answers
4k views
Ambiguous column name error
When executing the following (complete) SQL query on Microsoft SQL Server 2000:
SELECT B.ARTIFACTTNS, B.ARTIFACTNAME, B.ARTIFACTTYPE, B.INITIALBYTES, B.TIMESTAMP1, B.FILENAME, B.BACKINGCLASS,
...
2
votes
3answers
33 views
SQLServerCE cannot use rtrim in select statement - SQLCEException
I am writing a windows mobile application that uses SQL CE. It is not returning any rows when I include the WHERE Barcode = @Barcode statement.
I am guessing this is because the value for Barcode has ...
2
votes
1answer
92 views
Why Is SqlException Getting Reused On Connection Failure
In the following code the connection string password is intentionally incorrect to cause a SqlException on opening the connection.
while (true)
{
try
{
...
2
votes
1answer
43 views
How to get all messages\errors returned by a Stored Proc
I have a strored Proc which, when called with a specific set to parameters, returns following messages -
Msg 4104, Level 16, State 1, Line 1
The multi-part identifier "abc" could not be bound.
Msg ...
2
votes
2answers
233 views
SqlException Procedure expects parameter Error
I have a simple table which has three fields:
ID (int)
FormData (xml)
TimeStamp (DateTime).
I have created a stored procedure to insert values into the table which is working successfully, however ...
2
votes
3answers
2k views
SQLException: No suitable driver found
I have a Java class that accesses a MySQL database through JDBC that I use in a JSP running on Tomcat, and I am getting No Driver Found Exception.
I have a method:
private static Statement ...
2
votes
3answers
2k views
conversion of a varchar data type to a datetime data type resulted in an out-of-range value
I have the following piece of inline sql that I run from a c# windows service:
UPDATE table_name SET
status_cd = '2',
sdate = CAST('03/28/2011 18:03:40' AS DATETIME),
bat_id = ...
2
votes
1answer
238 views
Max(x=>x.Time) vs OrderByDescending(x=>x.Time).First().Time
I raised a related question about:
'Invalid column name [ColumnName]' on a nested linq query.
I'm trying to get the top row of a group as asked here:
Linq - Top value form each group
...
2
votes
0answers
614 views
'Invalid column name [ColumnName]' on a nested linq query
Last update
After alot of testing, I realised that if i ran the same query over the same dataset (in this case a Northwind) table on SQL 2000 and SQL 2005, I get two different results.
On SQL 2000, i ...
2
votes
1answer
691 views
How can I prevent this exception? java.sql.SQLException: Fail to convert to internal representation:
My code is throwing the above exception on the following line (line 2 of this) :
final ArrayDescriptor tParamArrayDescriptor = ArrayDescriptor.createDescriptor("MY_SYSTEM.T_PARAM_ARRAY", ...
2
votes
1answer
5k views
Intermittent SQLException: OALL8 is in an inconsistent state
Am getting the below error intermittently.
ERROR Exception occured while fetching the available subscriptions from the database - Could not roll back Hibernate transaction; nested exception is ...
2
votes
3answers
3k views
SQLException - Transaction BEGIN / COMMIT mismatch
Have you encountered this exception for a stored procedure which does indeed have a balanced transaction block?
I double-checked the stored procedure and it has exactly one TRANSACTION BEGIN and ...
2
votes
3answers
283 views
Obtain the Query/CommandText that caused a SQLException
I've got a logger that records exception information for our in house applications.
When we log SQL exceptions it'd be super useful if we could see the actual query that caused the exception.
Is ...
2
votes
2answers
1k views
Is there a 64bit driver for Microsoft Access?
java.sql.SQLException: [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the Driver and Application
I get the following error when I try to connect to ...
2
votes
1answer
207 views
SQL Exception Data
I have written a program which uses a SQL exception class and then use it show custom messages for the primary key violation. Also i want the primary key value that caused the violation. How can i get ...
2
votes
2answers
532 views
Why does a SqlException thrown by SqlCommand.ExecuteNonQuery contain all the PRINTs as errors?
When I run the following snippet
try
{
using (SqlConnection conn = new SqlConnection("I'm shy"))
{
conn.Open();
using (SqlCommand cmd = conn.CreateCommand())
{
cmd.CommandText = "PRINT ...
2
votes
2answers
2k views
SQLiteJDBC and PreparedStatement to use pragma table_info
I'm utilizing Java and SQLiteJDBC to work with SQLite. I need to access name of columns for a given table and I've found that I could accomplish this with the following command:
pragma ...
2
votes
3answers
3k views
C# - What is good SQLException Error Handling for Time-outs and failed connections
I use EntitySpaces for all of my Database related coding. As a sole developer I don't have time to sit and write the SQL for each and every application I write, so using a generator such as ES Suites ...
2
votes
5answers
442 views
Finer granularity of SQL Exceptions?
In C# Is there a way of getting a finer granularity with SQL exceptions?
I'm aware that an aweful lot can go wrong but I want to deal with certain cases differently and parsing the Error message ...
1
vote
2answers
191 views
Can't connect to SQL Server database: Login failed for user 'sa''
I can't simply connect to my database because of this error
Login failed for user 'sa'
Consider these lines of code:
SqlConnection conn = new SqlConnection("Data Source=arohbi;Initial ...
1
vote
1answer
117 views
java.sql.SQLException
I am getting the following error:
java.sql.SQLException: Exhausted Resultset
at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
at ...
1
vote
1answer
271 views
java.sql.SQLException: Invalid operation for forward only resultset : isLast
Initially I had given:
Statement replystmt = connection.createStatement;
which I changed to
Statement replystmt = connection.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ...
1
vote
2answers
69 views
How to determine which SQLException has been returned / where's the error codes list?
I'm using com.mysql.jdbc.Driver (If it means anything).
I want to be able to catch and properly process the exceptions I receive from MySQL. I want to know if the transaction failed, if there's ...
1
vote
2answers
74 views
Identifying SQLException due to network problem
I am developing a web application which uses 3 different databases(Oracle & MSSQL). This application contains spring and hibernate frameworks. In this application if databases goes down or some ...
1
vote
1answer
219 views
In Java, calling a PostgreSQL function, why I'm getting an error informing that the function doesn't exists?
I have this procedure in the database:
CREATE OR REPLACE FUNCTION replacePageRelevance(id INT, value REAL) RETURNS VOID AS $$
BEGIN
INSERT INTO pageRelevance VALUES (id,value);
EXCEPTION WHEN ...
1
vote
1answer
71 views
“IS NOT” syntax error in Java / SQLite application
I'm working on an Java application with SQLite database. I have to execute this query :
select * from service
where (tache IS NOT 'I')
AND (idequiv IS null OR idequiv = '' OR idequiv<=0)
union ...
1
vote
1answer
75 views
Running Apache Derby on a Flash Drive
I'm trying to run the Apache Derby db from a flash drive. I copied the relevant .jar files and managed to start up the network server. But how to I specify the connection URL in connecting to the ...
1
vote
1answer
54 views
Problem setting session sql mode?
<add name="SqlState" connectionString="Data Source=localhost;DataBase=AnyNameOfServerState;Integrated Security=True" providerName="System.Data.SqlClient"/>
<sessionState mode="SQLServer" ...
1
vote
2answers
87 views
how to fetch only reason from java exception
when I connect to database and execute a query, then if there occurs any exception then I want to fetch only the reason of exception not the full message , so that in my log I can log only the reason ...
1
vote
6answers
271 views
Delete sqlite db file
I am developing a C# application with its backend as sqlite. In my application I have a button for cleaning the database (deleting the .db file and creating it again with some initial data). Sometimes ...
1
vote
1answer
209 views
SQLiteException when querying in Android
I receive this exception "bind or column index out of range" in this line:
Cursor cursor = db.query(TABLE_NAME, null, ID, new String[] { id }, null, null, null);
I want to check if the given id ...
1
vote
1answer
353 views
How to catch SQLException of Data ? (eg. Data not exist)
Searching Solution for this question for long period but still unmanaged to get a answer for this, I'm trying to make a search box in my application made with JAVA.
I want to catch the exception ...
1
vote
2answers
493 views
Why I cannot debug a DatabaseMetaData?
I've a strange situation with a little application in Java using a JDBC-OBDC. I'm inspecting a Database using the DatabaseMetaData Class. When I execute the program, everything works without ...
1
vote
2answers
294 views
Rethrowing an exception in Android
I'm developing an Android 2.2 application.
I want to catch and re throw the same exception. I want to do this because I have to close a cursor before exit the method (a finally statement, isn't it?)
...
1
vote
2answers
218 views
How should I wrap a SQLException to an unchecked one?
We all know that SQLException is a checked Exception and most of us agree that checked Exception are verbose and leads to throw/catch pollution.
Which approach should I choose to avoid SQLException ...
1
vote
3answers
208 views
How do I handle the SqlException “No Records Found” when using LINQ to SQL?
I'm using LINQ to SQL to call sprocs at my company. Normally it works great but on some queries, if nothing is found it will throw a SqlException "No Records Found".
How should I handle this case?
...
1
vote
1answer
503 views
SQLException : Before start of result set
ResultSet rs;
rs = this.orderedProduct.select(" sum(unitstoproduce) "," soNo = "+ soNo);
int sum = Integer.parseInt(rs.getString(1));
When i try to execute the above query inside the java ...