Update of /cvsroot/sqlobject/SOWeb/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv24167/docs
Modified Files:
Authors.html Authors.txt FAQ.html FAQ.txt default.css
Log Message:
Updated docs
Index: Authors.html
===================================================================
RCS file: /cvsroot/sqlobject/SOWeb/docs/Authors.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Authors.html 21 Aug 2003 05:06:58 -0000 1.2
--- Authors.html 7 Sep 2003 18:21:38 -0000 1.3
***************
*** 19,22 ****
--- 19,23 ----
<li>David M. Cook <<a class="reference" href="mailto:dave@davidcook.org">dave@davidcook.org</a>></li>
<li>Luke Opperman <<a class="reference" href="mailto:luke@metathusalan.com">luke@metathusalan.com</a>></li>
+ <li>James Ralston <<a class="reference" href="mailto:jralston@hotmail.com">jralston@hotmail.com</a>></li>
</ul>
</div>
Index: Authors.txt
===================================================================
RCS file: /cvsroot/sqlobject/SOWeb/docs/Authors.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Authors.txt 5 Jul 2003 04:41:00 -0000 1.1
--- Authors.txt 7 Sep 2003 18:21:38 -0000 1.2
***************
*** 11,12 ****
--- 11,13 ----
* David M. Cook <da...@da...>
* Luke Opperman <lu...@me...>
+ * James Ralston <jra...@ho...>
Index: FAQ.html
===================================================================
RCS file: /cvsroot/sqlobject/SOWeb/docs/FAQ.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FAQ.html 21 Aug 2003 05:06:58 -0000 1.1
--- FAQ.html 7 Sep 2003 18:21:38 -0000 1.2
***************
*** 21,24 ****
--- 21,25 ----
<li><a class="reference" href="#how-does-inheritance-work" id="id4" name="id4">How Does Inheritance Work?</a></li>
<li><a class="reference" href="#composite-compound-attributes" id="id5" name="id5">Composite/Compound Attributes</a></li>
+ <li><a class="reference" href="#non-integer-ids" id="id6" name="id6">Non-Integer IDs</a></li>
</ul>
</div>
***************
*** 267,270 ****
--- 268,279 ----
values, or could be used among several objects that have
latitude/longitude columns.</p>
+ </div>
+ <div class="section" id="non-integer-ids">
+ <h1><a name="non-integer-ids">Non-Integer IDs</a></h1>
+ <p>SQLObject requires that you use an integer primary key, usually
+ defined in a specific way (<tt class="literal"><span class="pre">INT</span> <span class="pre">PRIMARY</span> <span class="pre">KEY</span> <span class="pre">AUTO_INCREMENT</span></tt> for
+ MySQL, for instance, or <tt class="literal"><span class="pre">SERIAL</span> <span class="pre">PRIMARY</span> <span class="pre">KEY</span></tt> for PostgreSQL). You
+ cannot use strings or other kinds of values.</p>
+ <p>This restriction will probably be removed soon.</p>
</div>
</div>
Index: FAQ.txt
===================================================================
RCS file: /cvsroot/sqlobject/SOWeb/docs/FAQ.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FAQ.txt 21 Aug 2003 05:06:58 -0000 1.1
--- FAQ.txt 7 Sep 2003 18:21:38 -0000 1.2
***************
*** 142,143 ****
--- 142,155 ----
values, or could be used among several objects that have
latitude/longitude columns.
+
+
+ Non-Integer IDs
+ ---------------
+
+ SQLObject requires that you use an integer primary key, usually
+ defined in a specific way (``INT PRIMARY KEY AUTO_INCREMENT`` for
+ MySQL, for instance, or ``SERIAL PRIMARY KEY`` for PostgreSQL). You
+ cannot use strings or other kinds of values.
+
+ This restriction will probably be removed soon.
+
Index: default.css
===================================================================
RCS file: /cvsroot/sqlobject/SOWeb/docs/default.css,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
|