Sam

182
Reputation
50 views

Registered User

Name Sam
Member for 7 months
Seen Nov 7 at 18:28
Website
Location
Age
Nov
11
accepted Good Open Source Code to learn Web Programming
Nov
7
awarded  Necromancer
Oct
20
comment SQLite vs MySQL
"Not fit for production" is quite a generalization. SQLite is used by Google, Adobe, Mozilla, Opera and many others. Even if you are trying to say to say that it is not fit for "production" use on a multi user environment, you are incorrect.
Oct
20
comment How Scalable is SQLite?
While the ideal use case for SQLite might be a single user, it doesn't mean it can't be used in a multi user environment.
Oct
20
answered Free, Lightweight PHP e-Commerce solution
Oct
20
answered Caching in urllib2?
Sep
13
revised What causes this Genshi’s Template Syntax Error?
edited tags; edited title
Sep
13
revised Database Design: Composite key vs one column primary key
edited title
Sep
13
revised Database Design: Composite key vs one column primary key
Added final outcome; added 25 characters in body
Aug
14
revised Database Design: Composite key vs one column primary key
added more information; added 36 characters in body
Aug
14
comment Database Design: Composite key vs one column primary key
Yes, the area code (or STD code as it is called in India) for all parts of the city is the same. This code is unique and set by a state owned telecom company and I use that data - bsnl.co.in/viewstatecode.php . Chandigarh is a union territory and also the capital of two states - Haryana and Punjab ( maps.google.com/maps?f=q&source=s_q&hl=en… ) which share borders with each other.
Aug
13
revised Database Design: Composite key vs one column primary key
fixed typo
Aug
13
revised Database Design: Composite key vs one column primary key
added 1 characters in body
Aug
13
comment Database Design: Composite key vs one column primary key
This does appear to be the popular sentiment. Thanks.
Aug
13
comment Database Design: Composite key vs one column primary key
Thanks, I'll look into your suggestion. (We currently have 2000+ cities in the db, which may double by next year).
Aug
13
comment Database Design: Composite key vs one column primary key
Thanks! Yours and Walter Mitty's suggestions seems the most practical.
Aug
13
awarded  Commentator
Aug
13
comment Database Design: Composite key vs one column primary key
Thnaks, but this doesn't help for our setup- it is important that the idAreaCode be unique.
Aug
13
comment Database Design: Composite key vs one column primary key
Thanks for posting. FYI - the database stores meteorological info of each city. The state table is important for (1) use in the mapping GUI (2) reducing query overhead when looking up a city (3) identifying a city with the same name in different state / country. So far this is the only unique situation I've come across where a city belongs to more than one state and it does seem to be a shame to add an extra table for this.
Aug
13
revised Database Design: Composite key vs one column primary key
Corrected typo
Aug
13
revised Database Design: Composite key vs one column primary key
more clarification
Aug
13
revised Database Design: Composite key vs one column primary key
Added more info; added 46 characters in body
Aug
13
awarded  Critic
Aug
12
asked Database Design: Composite key vs one column primary key
Jun
18
accepted SQLite - pre allocating database size…