Re: [PHP] Re: Where to start!
> The database must be properly normalised otherwise it
will be difficult to get at the data you need in an efficient manner.
Not true. If your needs are simple for example, normalisation can
increase the complexity of a schema, hence increasing development time
needed. Sometimes for example you could use something like a SET type,
and search for something in it using FIND_IN_SET().
--
Richard Heyes
+----------------------------------------+
| Access SSH with a Windows mapped drive |
|
http://www.phpguru.org/sftpdrive |
+----------------------------------------+
.
Relevant Pages
- Re: Java is becoming the new Cobol
... In the Unisys 2200 environment using their Network Database Server, you get a schema work area depending on how you invoke the schema. ... However, it not only copies the schema area into the program, but the "DMCA" (Database Management Communication Area - basically, the block of information that holds your connection state) is copied in too. ... So, you're left with working-storage, which makes it visible to your program only, or common-storage, which makes it visible to programs linked in. ... (comp.lang.cobol) - Split messages
... This is based off the northwind database. ... Create document schema: ... Select the SQL entry, make sure that we are pointing to the SQL ... For the item select a receive pipeline and name it EmpSplitPipe.btp. ... (microsoft.public.biztalk.general) - Re: OO vs. RDB challenge
... > complexity of mapping database tables to objects is useful only if the ... You would use the DBMS. ... > need to be thread safe because a thread can only get an instance of it ... (comp.object) - Re: Decouple SQL queries from class in OOP design
... > Of course there are existing applications that uses many different ... > architectures and still provides measurable business value. ... > should access every database directly. ... by the database, but the schema changes. ... (comp.object) - ANN: Sequel 2.8.0 Released
... Sequel provides thread safety, connection pooling and a concise DSL ... for constructing database queries and table schemas. ... if you want to, but the results and API are adapter dependent, ... Model associations, getting the schema, joins, and many other ... (comp.lang.ruby) |
|