Click here to Skip to main content
15,892,298 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: application Integration Pin
David Skelly20-Jul-09 2:45
David Skelly20-Jul-09 2:45 
GeneralRe: application Integration Pin
kebedetesema20-Jul-09 4:08
kebedetesema20-Jul-09 4:08 
GeneralRe: application Integration Pin
David Skelly20-Jul-09 22:38
David Skelly20-Jul-09 22:38 
GeneralRe: application Integration Pin
kebedetesema21-Jul-09 21:43
kebedetesema21-Jul-09 21:43 
GeneralRe: application Integration Pin
Robin_Roy21-Jul-09 19:25
Robin_Roy21-Jul-09 19:25 
AnswerRe: application Integration Pin
Rozis20-Jul-09 11:04
Rozis20-Jul-09 11:04 
QuestionLarge number of storage / insertion of records in MySQL Pin
ajitsunny18-Jul-09 3:54
ajitsunny18-Jul-09 3:54 
AnswerRe: Large number of storage / insertion of records in MySQL Pin
Eddy Vluggen18-Jul-09 9:42
professionalEddy Vluggen18-Jul-09 9:42 
It's part of the design. Consider this as an example;

If you have a Location-table like this;
Location    Name
---------- -------
      21    Floor
      22    Cellar
      23    Roof
and a User-table;
Id     Name
----- -----------
 64    ajitsunny
 66    E. Codd
 67    Don Quichotte
, with a Bookingstable like this;
Id     BookedByUserId      BookedLocationById     BookingStart   BookingEnd
----- ------------------- ---------------------- -------------- -----------
 1           64                   21                11.11.2011   12.11.2011
 2           64                   21                14.11.2011   16.11.2011
 3           67                   23                11.11.2011   13.11.2011
 5           66                   21                23.12.2012   31.12.2013

Then you can encode a booking with a single command, providing start and end-dates as parameters Smile | :)

(e.g., like;)
INSERT 
  INTO Booking 
VALUES ( 64, 21, '2011-11-11T00:00:00.000', '2011-11-12T00:00:00.000' ) 

AnswerRe: Large number of storage / insertion of records in MySQL Pin
Robin_Roy26-Jul-09 17:50
Robin_Roy26-Jul-09 17:50 
GeneralRe: Large number of storage / insertion of records in MySQL Pin
ajitsunny4-Aug-09 0:00
ajitsunny4-Aug-09 0:00 
QuestionHibernate-style coding? Pin
NandoMan16-Jul-09 21:17
NandoMan16-Jul-09 21:17 
AnswerRe: Hibernate-style coding? Pin
NandoMan16-Jul-09 21:46
NandoMan16-Jul-09 21:46 
AnswerRe: Hibernate-style coding? Pin
Curtis Schlak.17-Jul-09 15:24
Curtis Schlak.17-Jul-09 15:24 
GeneralRe: Hibernate-style coding? Pin
NandoMan19-Jul-09 7:03
NandoMan19-Jul-09 7:03 
GeneralRe: Hibernate-style coding? Pin
Curtis Schlak.21-Jul-09 16:17
Curtis Schlak.21-Jul-09 16:17 
QuestionCreating interface that can read network traffic Pin
that_dude_tj16-Jul-09 13:11
that_dude_tj16-Jul-09 13:11 
AnswerRe: Creating interface that can read network traffic Pin
CodingYoshi16-Jul-09 17:15
CodingYoshi16-Jul-09 17:15 
GeneralRe: Creating interface that can read network traffic Pin
that_dude_tj17-Jul-09 14:48
that_dude_tj17-Jul-09 14:48 
QuestionConsultant/Principal/Senior Software Engineer Pin
leowangrenbenmg15-Jul-09 23:24
leowangrenbenmg15-Jul-09 23:24 
AnswerRe: Consultant/Principal/Senior Software Engineer Pin
Pete O'Hanlon15-Jul-09 23:34
mvePete O'Hanlon15-Jul-09 23:34 
GeneralRe: Consultant/Principal/Senior Software Engineer Pin
Paul Conrad25-Jul-09 19:26
professionalPaul Conrad25-Jul-09 19:26 
GeneralRe: Consultant/Principal/Senior Software Engineer Pin
Pete O'Hanlon29-Jul-09 9:11
mvePete O'Hanlon29-Jul-09 9:11 
GeneralRe: Consultant/Principal/Senior Software Engineer Pin
Paul Conrad29-Jul-09 12:39
professionalPaul Conrad29-Jul-09 12:39 
AnswerRe: Consultant/Principal/Senior Software Engineer Pin
Eddy Vluggen16-Jul-09 2:27
professionalEddy Vluggen16-Jul-09 2:27 
QuestionIs this an existing pattern Pin
sadavoya15-Jul-09 7:30
sadavoya15-Jul-09 7:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.