0
votes
5answers
67 views
Problem with storing COM pointers in global singleton object
Background
The application I am working with has several COM DLLs.
One of the COM DLLs has a global singleton object, which stores pointers to COM interfaces in other DLLs. Because it is a global …
3
votes
2answers
99 views
haskell global var
The task is to create dynamically linked library, which encapsulates database hard work. Due to some design limitations I have a defined interface, which consist of numerous functions. Each function …
0
votes
1answer
34 views
Is it possible for $_SERVER[’SCRIPT_FILENAME’] to not be set?
Hey everyone, some background info:
In the config file for my website, I set the mysql database name, username and password based on the contents of $_SERVER['HTTP_HOST']. Because it is possible for …
0
votes
1answer
35 views
Global state in asp.net mvc application
Problem: Our web console shows a list of all computers on which our application is installed. Each machine has some identification information that can be associated with it. Simple strings like …
0
votes
2answers
40 views
PHP: How to pass existing database connection to static class methods?
I have a set of static class methods. I also have an existing database connection in a script stored in an object variable $DB. How do I call those static class methods and let them use that $DB …
0
votes
3answers
54 views
Create a global static variable in SQL Server?
Is there a way to create a global variable in SQL Server so it's saved even the server is shut down, so I can use it in functions?
Example from what I need:
DECLARE @@DefaultValue bit
This …
1
vote
9answers
204 views
How to Avoid Global Variables in Javascript
We all know that global variables are anything but best practice. But there are several instances when it is difficult to code without them. What techniques do you use to avoid the use of global …
1
vote
1answer
23 views
Creating variables using $GLOBALS
Hi there,
I am currently working on a php framework, which is in some cases structured like the ZendFramework.
It has MVC etc.
I did not found any equal matching to my problem.
My "problem" is I …
1
vote
1answer
50 views
jQuery - make global variable available to multiple plugins
I have a set of jQuery plugins I'm creating for a website.
All of these plugin have the common functionality that they make $.getJSON() calls.
The URL passed in these calls varies based on Dev, QA …
3
votes
3answers
206 views
Is there a better way to create this game loop? (C++/Windows)
I'm working on a Windows game, and I have this:
bool game_cont;
LRESULT WINAPI WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_QUIT: case WM_CLOSE: …
2
votes
1answer
82 views
Static initialization and destruction of a static library’s globals not happening with g++
Hi! Until some time ago, I thought a .a static library was just a collection of .o object files, just archiving them and not making them handled differently. But linking with a .o object and linking …
0
votes
5answers
108 views
Global variables in Visual C#
How do I declare global variables in Visual C#?
0
votes
4answers
41 views
[iphone] use NSString in other method?!
It's really embarrassing but i stuck on it for two hours of trial and error.
I declared an NSString in the interface as:
NSString *testString;
Then i made a property and synthesized it. I allocate …
0
votes
3answers
22 views
Is there a better way of recreating $_SERVER[’QUERY_STRING’]
I want to be able to return all of the parameters that are being passed into a specific page using PHP.
$_SERVER['QUERY_STRING'];
Seems to perform this task adequately, however I have heard many …
1
vote
4answers
128 views
Am I using a global state here, is there any better way to do this?
I am modifying some legacy code. I have an Object which has a method, lets say doSomething(). This method throws an exception when a particular assertion fails. But due to new requirement, on certain …
