--- a/doc/book/en/annexes/faq.rst Tue Sep 20 09:20:17 2011 +0200
+++ b/doc/book/en/annexes/faq.rst Tue Sep 20 15:13:42 2011 +0200
@@ -148,25 +148,12 @@
to anonymous user, which will automatically execute what is
decribed above.
-How to load data from a script ?
---------------------------------
-
-The following script aims at loading data within a script assuming pyro-nsd is
-running and your instance is configured with ``pyro-server=yes``, otherwise
-you would not be able to use dbapi.
-
-.. sourcecode:: python
+How to load data from a python script ?
+---------------------------------------
+Please, refer to the `Pyro chapter`_.
- from cubicweb import dbapi
+.. _`Pyro chapter`: UsingPyro_
- cnx = dbapi.connect(database='instance-id', user='admin', password='admin')
- cur = cnx.cursor()
- for name in (u'Personal', u'Professional', u'Computers'):
- cur.execute('INSERT Tag T: T name %(n)s', {'n': name})
- cnx.commit()
-
-Wether your instance as pyro activated or not, you can still acheive this by
-using cubicweb-ctl shell scripts.
How to format an entity date attribute ?
----------------------------------------