1
vote
4answers
261 views
C# Binding multiple textboxes to database
I'm trying to Bind 3 textboxes to a Class that retrieves any previously stored records for each of the 3 textboxes. I don't know how to retrieve 3 different values from a class in …
0
votes
6answers
120 views
Modularity of Classes
Are there any tips or tricks to make my classes and application designs more modular?
0
votes
5answers
115 views
Help with a PHP class
I have a session class that basicly just sets and retrieves session variables,
the reason I made it was so I could easily change it to use sessions or something
like memcache to se …
5
votes
6answers
2k views
Shadows vs. Overrides in VB.Net
Would some OO guru mind explaining the significance of these two keywords--what they do and for which context is one or the other preferable?
1
vote
3answers
62 views
Better to use an Object or a Static Function in PHP?
I am trying to learn OO and classes and all that good stuff in PHP, I am finally learning the sytax good enough to use it some and I am curious if there is any benefit of starting …
-1
votes
3answers
100 views
Can I declare something global at the class level in PHP?
Is there a way to set something as global in a class and have all methods of that class to have access to it? Currently if I use global $session; I have to add it into every metho …
0
votes
3answers
55 views
singleton inside of a construct method in PHP?
Is it ok to use a singleton method inside of a __constructor to initiate the class if it wasn't already?
1
vote
10answers
347 views
For learning OO, do you recommend Head First Java or Head First OOA&D?
I learned some C on my own and I've finished one semester of Java programming. OO programming takes a different approach to problems. I want to know which book will help me pick …
2
votes
1answer
52 views
What’s the most straightforward way to achieve a chainable JavaScript framework like jQuery?
I'd like to write a small JavaScript (framework) that can chain functions with all following functions being aware of the data of its predecessor.
Basically, I'm not interested in …
1
vote
5answers
110 views
Can you get a method name from within a method in PHP?
Is it possible to do something like this?
public function something() {
$thisMethodName = method_get_name(); // I made that function up, but is there some way of doing what i …
4
votes
9answers
434 views
Best solution for __autoload
As our PHP5 OO application grew (in both size and traffic), we decided to revisit the __autoload() strategy.
We always name the file by the class definition it contains, so class …
0
votes
2answers
64 views
Questions about OO in PHP continued..
Yesterday I had a few question about OO and classes in PHP here but I have a couple new questions.
1a)
In the example snippet below you will see the 3 variables set at the top o …
3
votes
3answers
74 views
couple of questions about OO and classes in PHP
I am learning about OO and classes, I have a couple of questions about OO and classes in PHP
As I understand it, a class that extends another class simply means that the class th …
1
vote
1answer
154 views
Programming paradigm with heavy OO constraints
Hey. I remember reading somewhere about a programimng paradigm that has very tough restrictions about OO. It forbids nested ifs and elses entirely, avoid functions in the global na …
0
votes
2answers
31 views
Synchronize Data in Oracle with PHP
Hi Folks,
the following "problem" :
2 Oracle Databases , Servers identified by their Names. If one attribute of the Server from Table X is different to Server in Table Y -> Updat …
