Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
8answers
3k views

Lookup Tables Best Practices: DB Tables… or Enumerations

If we have to store the available positions at a company (i.e. Manager, Team Lead, ... etc). What are the best practices for storing it? I have two opinions with comments... "sure, welcoming yours" ...
3
votes
1answer
504 views

Zend_Form: Database records in HTML table with checkboxes

I am trying to add a HTML multi-column table to a Zend_Form. The table would be populated by data from the database and each row should be preceded by a checkbox, as shown in the ASCII below: ...
2
votes
5answers
1k views

best practices with code or lookup tables

[UPDATE] Chosen approach is below, as a response to this question Hi, I' ve been looking around in this subject but I can't really find what I'm looking for... With Code tables I mean: stuff like ...
1
vote
2answers
1k views

LINQ inner join betwenn Enumerable and DB Table

I'm trying to determine which records to delete from a database when a user submits a form. The page has two CheckBoxList one representing the records before modification and one after. I can easily ...