Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
67 views

is this a good idea with static data

So i have an ever growing system in PHP where i have a static class that takes care of the database connection stuff. <?php class Database { // ... connection upon construction and ...
1
vote
1answer
237 views

Using Java in Google App Engine, what's the best way to store and access large, static data?

I have my most of my apps "dynamic" data stored in the datastore. However, I also have a large collection of static data that would only change with new builds of the app. A series of flat files ...
0
votes
1answer
35 views

Integrate dynamic feed into database results with pagination

I have two main data sources I need to do a mashup with in php. The first one is an SQL database and the other is a feed. Both sources contain similar items that need to be sorted by "name" or ...
0
votes
4answers
81 views

Initialize a static non-const data member of a class

I have written the following sample code : class MyClass { static int a; public: MyClass ( int i ) : a ( i ) { cout << " \n ctor called. a is : "<< a << " \n"; ...
0
votes
0answers
203 views

Singleton Class, App pool, and static data on the singleton

So I'm not quite sure how to ask this as this kind of goes well beyond what I know. I want to create a singleton class with specific methods that can be separately unit tested. What I asked my ...
0
votes
3answers
72 views

Shipping static data with an iPhone app

I'm making a game and I need to be able to ship some data about the game's various ships and details about them that the app will use. I'm looking for what the ideal way to do this would be. Now I've ...
0
votes
1answer
76 views

How will you fetch static data in your windows form application?

What's your approach to fetch static data in your windows form application? My approach is to load an arrayList with data when the user logs in. Then reuse this arraylist which will save round trips ...
0
votes
6answers
175 views

Using static variable in function vs passing variable from caller

I have a function which spawns various types of threads, one of the thread types needs to be spawned every x seconds. I currently have it like this: bool isTime( Time t ) { return t >= now(); ...
0
votes
2answers
96 views

Static data on iphone c++

I have data for countries which include Name, Population, Area etc for countries... What is the best way to store them, I was thinking of static arrays in header files ...? I am using c++ primarily ...
0
votes
1answer
64 views

Advise regarding static data in an application and testing

I am working on a pretty typical asp.net web site and using sql server 2005 as database. I have created a Model dll holding the applications typical business logic. The application is dependent of ...