Skip to content

Commit

Permalink
Merge pull request #154 from baztian/use-params-in-readme
Browse files Browse the repository at this point in the history
Use params in README
  • Loading branch information
baztian authored Jul 2, 2020
2 parents 936817b + 9b0b18f commit cd2fd4c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ plug-in mechanism.
Install
=======

You can get and install JayDeBeApi with `pip <http://pip.pypa.io/>`_
::
You can get and install JayDeBeApi with `pip <http://pip.pypa.io/>`_ ::

$ pip install JayDeBeApi

Expand Down Expand Up @@ -100,7 +99,7 @@ Here is an example:
... ' "NAME" VARCHAR(50) not null,'
... ' primary key ("CUST_ID"))'
... )
>>> curs.execute("insert into CUSTOMER values (1, 'John')")
>>> curs.execute("insert into CUSTOMER values (?, ?)", (1, 'John'))
>>> curs.execute("select * from CUSTOMER")
>>> curs.fetchall()
[(1, u'John')]
Expand Down

0 comments on commit cd2fd4c

Please sign in to comment.