Tagged Questions

0
votes
2answers
354 views

HttpContext.GetGlobalResourceObject always returns null.

Hi folks! I created two files in the App_GlobalResources folder: SiteResources.en-US.resx SiteResources.sp-SP.resx Both contain a value for "SiteTitleSeparator". Here is what …
0
votes
4answers
55 views

close a thread against a mysql database in c#

what is the proper way of closing a tread after running a query against a MySql database from a windows form in C#. is a simple open close enough like this? conn.Open(); //query …
0
votes
1answer
51 views

How to limit the effect of client modifications to production systems

Our shop has developed a few WEB/SMS/DB solution for a dozen client installations. The applications have some real-time performance requirements, and are just good enough to functi …
3
votes
3answers
89 views

IDisposable chain

If I implement a object with IDisposable, should all objects that own that object implement it as well, even if they have no other resources to release?
2
votes
1answer
61 views

iPhone: Is there an automated way to identify unused resources?

As I've developed my app, I have imported and incorporated a lot of images, sounds, etc. I guess I could just write a shell script that greps the source code, but I'm wondering if …
7
votes
12answers
438 views

Looking for a solution to the “Dishwasher At Work” problem

I am looking for an algorithm to apply to the "dishwasher at work" problem. While it is great to be able to put dirty coffee cups etc. in it, you quickly run into the "what is t …
36
votes
49answers
2k views

When Programmers Don’t Have Enough Work, what to do?

How to utilize programmers effectively when they don’t have Enough Work?
8
votes
2answers
266 views

Is it possible to prevent DoSing on Google App Engine?

I'm considering developing an app for Google App Engine, which should not get too much traffic. I'd really rather not pay to exceed the free quotas. However, it seems like it would …
3
votes
4answers
287 views

Is C++ like resource management possible in Java [closed]

In C++ we have Resource Acquisition Is Initialization (RAII) pattern, which extremely simplify the resource management. The idea is to provide some wrapping object for any kind of …
3
votes
8answers
3k views

Where to close java PreparedStatements and ResultSets?

Consider the code: PreparedStatement ps = null; ResultSet rs = null; try { ps = conn.createStatement(myQueryString); rs = ps.executeQuery(); // process the results... } catc …
1
vote
4answers
337 views

Are there examples for programming-languages support automatic management of resources besides memory?

The idea of automatic memory management has gained big support with new programming languages. I'm interested if concepts exists for automatic management of other resources like fi …
4
votes
5answers
508 views

RAII in Java… is resource disposal always so ugly ? (was: I had a dream ?)

Hi all, I just played with Java file system API, and came down with the following function, used to copy binary files. The original source came from the Web, but I added try/catch …