1
vote
8answers
96 views
Why don’t statements that don’t do anything throw an exception (or warn the developer)?
I've been bitten a couple of times by statements in VB.NET (not sure if this effect exists in C#) that appear to be self-referencing, but when they're executed, they don't actually …
0
votes
6answers
65 views
Exceptions as a control mechanism
I was reading this post and laughed http://mcfunley.com/239/exceptions-are-not-a-control-mechanism
In one of my apps i do not use File.Exist even tho i EXPECT files to exist a goo …
3
votes
4answers
68 views
Why is this object being deallocated?
Hi, I'm developing an iPhone app, I'm trying to push a view into the navigation controller, which I've done many times before, however, I'm having some issues with this particular …
0
votes
1answer
26 views
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible.
I am getting the above error when I upload my app to the hosting company.(asp.net)
DB is a local sql mdf in app_data directory.
on local asp.net dev server everything is ok.
I am u …
0
votes
0answers
13 views
System.OutOfMemory Exception in VS2008 when loading TestResults
Hi.
I'm experiencing some problems when loading a TestResults list (.trx) from the nightly builds on the buildserver. I get a System.OutOfMemory exception very often. I just check …
0
votes
1answer
24 views
Java Exception Error - Sqlite preparedStatement.setBlob
I'm placing and image into a databse, it could be eitehr an MYSQL database (the Server) or an SQLITE database (a Tablet PC for on the road). The Java application synchs with the se …
0
votes
1answer
15 views
com.ibm.db2.jcc.b.SqlException: Invalid argument: unknown column name COL1
Hi,
i was getting this error com.ibm.db2.jcc.b.SqlException: Invalid argument: unknown column name COL1 when trying to access my resultSet with rs.getString("COL1").
My SQL Query …
0
votes
3answers
44 views
Exception when loosing a thread
I start two threads with a Timer and TimerTasks
Timer timer = new Timer();
TimerTask task = new TimerTask() {
public void run() {
doSomething();
}
…
0
votes
4answers
35 views
Potentially dangerous Request.Form value - Exception
Hi,
today I receive multiple (50->*) e-mails regarding:
A potentially dangerous Request.Form value was detected from the client (ctl00$Content$InputStreet="OzgYPY <a href="h …
5
votes
10answers
309 views
Why not catch general Exceptions
My VS just told me;
Warning 2 CA1031 : Microsoft.Design : Modify 'Program.Main(string[])' to catch a more specific exception than 'Exception' or rethrow the exception.
Why sh …
0
votes
2answers
16 views
java PdfTextExtractor.getTextFromPage(Unknown Source)
Hello i have trouble with parsing a pdf when the iterator reaches page 11 an exception is throw.
Any ideas? Thanks
Here's my code:
import java.io.*;
import java.nio.charset.Cha …
1
vote
4answers
87 views
beginner question about exception in java
when an exception occurs that a method is unable to handle - does the program terminate and show the error number ? where does the error number and information about the error come …
2
votes
2answers
76 views
question about pl/sql exception
hi all.
the following text is an excerpt of oracle documentation Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1) :
Unhandled exceptions can also affect
subpr …
0
votes
2answers
25 views
mdf file is work correctly under App_data folder but after attaching to sql server give following error
mdf file is working correctly under App_data folder but after attaching it to sql server give following error when running asp.net page.
Cannot open user default database. Login f …
1
vote
2answers
27 views
PHP DOMDocument error handling
Hi,
In my application I am loading xml from url in order to parse it.
But sometimes this url may not be valid. In this case I need to handle errors.
I have the following code:
$x …
