Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1 | \section{\module{sqlite3} --- |
| 2 | DB-API 2.0 interface for SQLite databases} |
| 3 | |
| 4 | \declaremodule{builtin}{sqlite3} |
| 5 | \modulesynopsis{A DB-API 2.0 implementation using SQLite 3.x.} |
| 6 | \sectionauthor{Gerhard Häring}{gh@ghaering.de} |
| 7 | \versionadded{2.5} |
| 8 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 9 | SQLite is a C library that provides a SQL-language database that |
| 10 | stores data in disk files without requiring a separate server process. |
| 11 | pysqlite was written by Gerhard H\"aring and provides a SQL interface |
| 12 | compliant with the DB-API 2.0 specification described by |
| 13 | \pep{249}. This means that it should be possible to write the first |
| 14 | version of your applications using SQLite for data storage. If |
| 15 | switching to a larger database such as PostgreSQL or Oracle is |
| 16 | later necessary, the switch should be relatively easy. |
| 17 | |
| 18 | To use the module, you must first create a \class{Connection} object |
| 19 | that represents the database. Here the data will be stored in the |
| 20 | \file{/tmp/example} file: |
| 21 | |
| 22 | \begin{verbatim} |
| 23 | conn = sqlite3.connect('/tmp/example') |
| 24 | \end{verbatim} |
| 25 | |
| 26 | You can also supply the special name \samp{:memory:} to create |
| 27 | a database in RAM. |
| 28 | |
| 29 | Once you have a \class{Connection}, you can create a \class{Cursor} |
| 30 | object and call its \method{execute()} method to perform SQL commands: |
| 31 | |
| 32 | \begin{verbatim} |
| 33 | c = conn.cursor() |
| 34 | |
| 35 | # Create table |
| 36 | c.execute('''create table stocks |
| 37 | (date timestamp, trans varchar, symbol varchar, |
| 38 | qty decimal, price decimal)''') |
| 39 | |
| 40 | # Insert a row of data |
| 41 | c.execute("""insert into stocks |
| 42 | values ('2006-01-05','BUY','RHAT',100,35.14)""") |
| 43 | \end{verbatim} |
| 44 | |
| 45 | Usually your SQL operations will need to use values from Python |
| 46 | variables. You shouldn't assemble your query using Python's string |
| 47 | operations because doing so is insecure; it makes your program |
| 48 | vulnerable to an SQL injection attack. |
| 49 | |
| 50 | Instead, use the DB-API's parameter substitution. Put \samp{?} as a |
| 51 | placeholder wherever you want to use a value, and then provide a tuple |
| 52 | of values as the second argument to the cursor's \method{execute()} |
| 53 | method. (Other database modules may use a different placeholder, |
| 54 | such as \samp{\%s} or \samp{:1}.) For example: |
| 55 | |
| 56 | \begin{verbatim} |
| 57 | # Never do this -- insecure! |
| 58 | symbol = 'IBM' |
| 59 | c.execute("... where symbol = '%s'" % symbol) |
| 60 | |
| 61 | # Do this instead |
| 62 | t = (symbol,) |
| 63 | c.execute('select * from stocks where symbol=?', t) |
| 64 | |
| 65 | # Larger example |
| 66 | for t in (('2006-03-28', 'BUY', 'IBM', 1000, 45.00), |
| 67 | ('2006-04-05', 'BUY', 'MSOFT', 1000, 72.00), |
| 68 | ('2006-04-06', 'SELL', 'IBM', 500, 53.00), |
| 69 | ): |
| 70 | c.execute('insert into stocks values (?,?,?,?,?)', t) |
| 71 | \end{verbatim} |
| 72 | |
| 73 | To retrieve data after executing a SELECT statement, you can either |
| 74 | treat the cursor as an iterator, call the cursor's \method{fetchone()} |
| 75 | method to retrieve a single matching row, |
| 76 | or call \method{fetchall()} to get a list of the matching rows. |
| 77 | |
| 78 | This example uses the iterator form: |
| 79 | |
| 80 | \begin{verbatim} |
| 81 | >>> c = conn.cursor() |
| 82 | >>> c.execute('select * from stocks order by price') |
| 83 | >>> for row in c: |
| 84 | ... print row |
| 85 | ... |
| 86 | (u'2006-01-05', u'BUY', u'RHAT', 100, 35.140000000000001) |
| 87 | (u'2006-03-28', u'BUY', u'IBM', 1000, 45.0) |
| 88 | (u'2006-04-06', u'SELL', u'IBM', 500, 53.0) |
| 89 | (u'2006-04-05', u'BUY', u'MSOFT', 1000, 72.0) |
| 90 | >>> |
| 91 | \end{verbatim} |
| 92 | |
| 93 | \begin{seealso} |
| 94 | |
| 95 | \seeurl{http://www.pysqlite.org} |
| 96 | {The pysqlite web page.} |
| 97 | |
| 98 | \seeurl{http://www.sqlite.org} |
| 99 | {The SQLite web page; the documentation describes the syntax and the |
| 100 | available data types for the supported SQL dialect.} |
| 101 | |
| 102 | \seepep{249}{Database API Specification 2.0}{PEP written by |
| 103 | Marc-Andr\'e Lemburg.} |
| 104 | |
| 105 | \end{seealso} |
| 106 | |
| 107 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 108 | \subsection{Module functions and constants\label{sqlite3-Module-Contents}} |
| 109 | |
| 110 | \begin{datadesc}{PARSE_DECLTYPES} |
| 111 | This constant is meant to be used with the \var{detect_types} parameter of the |
| 112 | \function{connect} function. |
| 113 | |
| 114 | Setting it makes the \module{sqlite3} module parse the declared type for each column it |
| 115 | returns. It will parse out the first word of the declared type, i. e. for |
| 116 | "integer primary key", it will parse out "integer". Then for that column, it |
| 117 | will look into the converters dictionary and use the converter function |
| 118 | registered for that type there. Converter names are case-sensitive! |
| 119 | \end{datadesc} |
| 120 | |
| 121 | |
| 122 | \begin{datadesc}{PARSE_COLNAMES} |
| 123 | This constant is meant to be used with the \var{detect_types} parameter of the |
| 124 | \function{connect} function. |
| 125 | |
| 126 | Setting this makes the SQLite interface parse the column name for each column |
| 127 | it returns. It will look for a string formed [mytype] in there, and then |
| 128 | decide that 'mytype' is the type of the column. It will try to find an entry of |
| 129 | 'mytype' in the converters dictionary and then use the converter function found |
| 130 | there to return the value. The column name found in \member{cursor.description} is only |
| 131 | the first word of the column name, i. e. if you use something like |
| 132 | \code{'as "x [datetime]"'} in your SQL, then we will parse out everything until the |
| 133 | first blank for the column name: the column name would simply be "x". |
| 134 | \end{datadesc} |
| 135 | |
| 136 | \begin{funcdesc}{connect}{database\optional{, timeout, isolation_level, detect_types, factory}} |
| 137 | Opens a connection to the SQLite database file \var{database}. You can use |
| 138 | \code{":memory:"} to open a database connection to a database that resides in |
| 139 | RAM instead of on disk. |
| 140 | |
| 141 | When a database is accessed by multiple connections, and one of the processes |
| 142 | modifies the database, the SQLite database is locked until that transaction is |
| 143 | committed. The \var{timeout} parameter specifies how long the connection should |
| 144 | wait for the lock to go away until raising an exception. The default for the |
| 145 | timeout parameter is 5.0 (five seconds). |
| 146 | |
| 147 | For the \var{isolation_level} parameter, please see \member{isolation_level} |
| 148 | \ref{sqlite3-Connection-IsolationLevel} property of \class{Connection} objects. |
| 149 | |
| 150 | SQLite natively supports only the types TEXT, INTEGER, FLOAT, BLOB and NULL. If |
| 151 | you want to use other types, like you have to add support for them yourself. |
| 152 | The \var{detect_types} parameter and the using custom \strong{converters} registered with |
| 153 | the module-level \function{register_converter} function allow you to easily do that. |
| 154 | |
| 155 | \var{detect_types} defaults to 0 (i. e. off, no type detection), you can set it |
| 156 | to any combination of \constant{PARSE_DECLTYPES} and \constant{PARSE_COLNAMES} to turn type |
| 157 | detection on. |
| 158 | |
| 159 | By default, the \module{sqlite3} module uses its \class{Connection} class for the |
| 160 | connect call. You can, however, subclass the \class{Connection} class and make |
| 161 | \function{connect} use your class instead by providing your class for the |
| 162 | \var{factory} parameter. |
| 163 | |
| 164 | Consult the section \ref{sqlite3-Types} of this manual for details. |
| 165 | |
| 166 | The \module{sqlite3} module internally uses a statement cache to avoid SQL parsing |
| 167 | overhead. If you want to explicitly set the number of statements that are |
| 168 | cached for the connection, you can set the \var{cached_statements} parameter. |
| 169 | The currently implemented default is to cache 100 statements. |
| 170 | \end{funcdesc} |
| 171 | |
| 172 | \begin{funcdesc}{register_converter}{typename, callable} |
| 173 | Registers a callable to convert a bytestring from the database into a custom |
| 174 | Python type. The callable will be invoked for all database values that are of |
| 175 | the type \var{typename}. Confer the parameter \var{detect_types} of the |
| 176 | \function{connect} function for how the type detection works. Note that the case of |
| 177 | \var{typename} and the name of the type in your query must match! |
| 178 | \end{funcdesc} |
| 179 | |
| 180 | \begin{funcdesc}{register_adapter}{type, callable} |
| 181 | Registers a callable to convert the custom Python type \var{type} into one of |
| 182 | SQLite's supported types. The callable \var{callable} accepts as single |
| 183 | parameter the Python value, and must return a value of the following types: |
| 184 | int, long, float, str (UTF-8 encoded), unicode or buffer. |
| 185 | \end{funcdesc} |
| 186 | |
| 187 | \begin{funcdesc}{complete_statement}{sql} |
| 188 | Returns \constant{True} if the string \var{sql} one or more complete SQL |
| 189 | statements terminated by semicolons. It does not verify if the SQL is |
| 190 | syntactically correct, only if there are no unclosed string literals and if the |
| 191 | statement is terminated by a semicolon. |
| 192 | |
| 193 | This can be used to build a shell for SQLite, like in the following example: |
| 194 | |
| 195 | \verbatiminput{sqlite3/complete_statement.py} |
| 196 | \end{funcdesc} |
| 197 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 198 | \begin{funcdesc}{}enable_callback_tracebacks{flag} |
| 199 | By default you will not get any tracebacks in user-defined functions, |
| 200 | aggregates, converters, authorizer callbacks etc. If you want to debug them, |
| 201 | you can call this function with \var{flag} as True. Afterwards, you will get |
| 202 | tracebacks from callbacks on \code{sys.stderr}. Use \constant{False} to disable |
| 203 | the feature again. |
| 204 | \end{funcdesc} |
| 205 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 206 | \subsection{Connection Objects \label{sqlite3-Connection-Objects}} |
| 207 | |
| 208 | A \class{Connection} instance has the following attributes and methods: |
| 209 | |
| 210 | \label{sqlite3-Connection-IsolationLevel} |
| 211 | \begin{memberdesc}{isolation_level} |
| 212 | Get or set the current isolation level. None for autocommit mode or one of |
| 213 | "DEFERRED", "IMMEDIATE" or "EXLUSIVE". See Controlling Transactions |
| 214 | \ref{sqlite3-Controlling-Transactions} for a more detailed explanation. |
| 215 | \end{memberdesc} |
| 216 | |
| 217 | \begin{methoddesc}{cursor}{\optional{cursorClass}} |
| 218 | The cursor method accepts a single optional parameter \var{cursorClass}. |
| 219 | This is a custom cursor class which must extend \class{sqlite3.Cursor}. |
| 220 | \end{methoddesc} |
| 221 | |
| 222 | \begin{methoddesc}{execute}{sql, \optional{parameters}} |
| 223 | This is a nonstandard shortcut that creates an intermediate cursor object by |
| 224 | calling the cursor method, then calls the cursor's \method{execute} method with the |
| 225 | parameters given. |
| 226 | \end{methoddesc} |
| 227 | |
| 228 | \begin{methoddesc}{executemany}{sql, \optional{parameters}} |
| 229 | This is a nonstandard shortcut that creates an intermediate cursor object by |
| 230 | calling the cursor method, then calls the cursor's \method{executemany} method with the |
| 231 | parameters given. |
| 232 | \end{methoddesc} |
| 233 | |
| 234 | \begin{methoddesc}{executescript}{sql_script} |
| 235 | This is a nonstandard shortcut that creates an intermediate cursor object by |
| 236 | calling the cursor method, then calls the cursor's \method{executescript} method with the |
| 237 | parameters given. |
| 238 | \end{methoddesc} |
| 239 | |
| 240 | \begin{methoddesc}{create_function}{name, num_params, func} |
| 241 | |
| 242 | Creates a user-defined function that you can later use from within SQL |
| 243 | statements under the function name \var{name}. \var{num_params} is the number |
| 244 | of parameters the function accepts, and \var{func} is a Python callable that is |
| 245 | called as SQL function. |
| 246 | |
| 247 | The function can return any of the types supported by SQLite: unicode, str, |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 248 | int, long, float, buffer and None. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 249 | |
| 250 | Example: |
| 251 | |
| 252 | \verbatiminput{sqlite3/md5func.py} |
| 253 | \end{methoddesc} |
| 254 | |
| 255 | \begin{methoddesc}{create_aggregate}{name, num_params, aggregate_class} |
| 256 | |
| 257 | Creates a user-defined aggregate function. |
| 258 | |
| 259 | The aggregate class must implement a \code{step} method, which accepts the |
| 260 | number of parameters \var{num_params}, and a \code{finalize} method which |
| 261 | will return the final result of the aggregate. |
| 262 | |
| 263 | The \code{finalize} method can return any of the types supported by SQLite: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 264 | unicode, str, int, long, float, buffer and None. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 265 | |
| 266 | Example: |
| 267 | |
| 268 | \verbatiminput{sqlite3/mysumaggr.py} |
| 269 | \end{methoddesc} |
| 270 | |
| 271 | \begin{methoddesc}{create_collation}{name, callable} |
| 272 | |
| 273 | Creates a collation with the specified \var{name} and \var{callable}. The |
| 274 | callable will be passed two string arguments. It should return -1 if the first |
| 275 | is ordered lower than the second, 0 if they are ordered equal and 1 and if the |
| 276 | first is ordered higher than the second. Note that this controls sorting |
| 277 | (ORDER BY in SQL) so your comparisons don't affect other SQL operations. |
| 278 | |
| 279 | Note that the callable will get its parameters as Python bytestrings, which |
| 280 | will normally be encoded in UTF-8. |
| 281 | |
| 282 | The following example shows a custom collation that sorts "the wrong way": |
| 283 | |
| 284 | \verbatiminput{sqlite3/collation_reverse.py} |
| 285 | |
| 286 | To remove a collation, call \code{create_collation} with None as callable: |
| 287 | |
| 288 | \begin{verbatim} |
| 289 | con.create_collation("reverse", None) |
| 290 | \end{verbatim} |
| 291 | \end{methoddesc} |
| 292 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 293 | \begin{methoddesc}{interrupt}{} |
| 294 | |
| 295 | You can call this method from a different thread to abort any queries that |
| 296 | might be executing on the connection. The query will then abort and the caller |
| 297 | will get an exception. |
| 298 | \end{methoddesc} |
| 299 | |
| 300 | \begin{methoddesc}{set_authorizer}{authorizer_callback} |
| 301 | |
| 302 | This routine registers a callback. The callback is invoked for each attempt to |
| 303 | access a column of a table in the database. The callback should return |
| 304 | \constant{SQLITE_OK} if access is allowed, \constant{SQLITE_DENY} if the entire |
| 305 | SQL statement should be aborted with an error and \constant{SQLITE_IGNORE} if |
| 306 | the column should be treated as a NULL value. These constants are available in |
| 307 | the \module{sqlite3} module. |
| 308 | |
| 309 | The first argument to the callback signifies what kind of operation is to be |
| 310 | authorized. The second and third argument will be arguments or \constant{None} |
| 311 | depending on the first argument. The 4th argument is the name of the database |
| 312 | ("main", "temp", etc.) if applicable. The 5th argument is the name of the |
| 313 | inner-most trigger or view that is responsible for the access attempt or |
| 314 | \constant{None} if this access attempt is directly from input SQL code. |
| 315 | |
| 316 | Please consult the SQLite documentation about the possible values for the first |
| 317 | argument and the meaning of the second and third argument depending on the |
| 318 | first one. All necessary constants are available in the \module{sqlite3} |
| 319 | module. |
| 320 | \end{methoddesc} |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 321 | |
| 322 | \begin{memberdesc}{row_factory} |
| 323 | You can change this attribute to a callable that accepts the cursor and |
| 324 | the original row as tuple and will return the real result row. This |
| 325 | way, you can implement more advanced ways of returning results, like |
| 326 | ones that can also access columns by name. |
| 327 | |
| 328 | Example: |
| 329 | |
| 330 | \verbatiminput{sqlite3/row_factory.py} |
| 331 | |
| 332 | If the standard tuple types don't suffice for you, and you want name-based |
| 333 | access to columns, you should consider setting \member{row_factory} to the |
| 334 | highly-optimized sqlite3.Row type. It provides both |
| 335 | index-based and case-insensitive name-based access to columns with almost |
| 336 | no memory overhead. Much better than your own custom dictionary-based |
| 337 | approach or even a db_row based solution. |
| 338 | \end{memberdesc} |
| 339 | |
| 340 | \begin{memberdesc}{text_factory} |
| 341 | Using this attribute you can control what objects are returned for the |
| 342 | TEXT data type. By default, this attribute is set to \class{unicode} and |
| 343 | the \module{sqlite3} module will return Unicode objects for TEXT. If you want to return |
| 344 | bytestrings instead, you can set it to \class{str}. |
| 345 | |
| 346 | For efficiency reasons, there's also a way to return Unicode objects only |
| 347 | for non-ASCII data, and bytestrings otherwise. To activate it, set this |
| 348 | attribute to \constant{sqlite3.OptimizedUnicode}. |
| 349 | |
| 350 | You can also set it to any other callable that accepts a single bytestring |
| 351 | parameter and returns the result object. |
| 352 | |
| 353 | See the following example code for illustration: |
| 354 | |
| 355 | \verbatiminput{sqlite3/text_factory.py} |
| 356 | \end{memberdesc} |
| 357 | |
| 358 | \begin{memberdesc}{total_changes} |
| 359 | Returns the total number of database rows that have be modified, inserted, |
| 360 | or deleted since the database connection was opened. |
| 361 | \end{memberdesc} |
| 362 | |
| 363 | |
| 364 | |
| 365 | |
| 366 | |
| 367 | \subsection{Cursor Objects \label{sqlite3-Cursor-Objects}} |
| 368 | |
| 369 | A \class{Cursor} instance has the following attributes and methods: |
| 370 | |
| 371 | \begin{methoddesc}{execute}{sql, \optional{parameters}} |
| 372 | |
| 373 | Executes a SQL statement. The SQL statement may be parametrized (i. e. |
| 374 | placeholders instead of SQL literals). The \module{sqlite3} module supports two kinds of |
| 375 | placeholders: question marks (qmark style) and named placeholders (named |
| 376 | style). |
| 377 | |
| 378 | This example shows how to use parameters with qmark style: |
| 379 | |
| 380 | \verbatiminput{sqlite3/execute_1.py} |
| 381 | |
| 382 | This example shows how to use the named style: |
| 383 | |
| 384 | \verbatiminput{sqlite3/execute_2.py} |
| 385 | |
| 386 | \method{execute} will only execute a single SQL statement. If you try to |
| 387 | execute more than one statement with it, it will raise a Warning. Use |
| 388 | \method{executescript} if want to execute multiple SQL statements with one |
| 389 | call. |
| 390 | \end{methoddesc} |
| 391 | |
| 392 | |
| 393 | \begin{methoddesc}{executemany}{sql, seq_of_parameters} |
| 394 | Executes a SQL command against all parameter sequences or mappings found in the |
| 395 | sequence \var{sql}. The \module{sqlite3} module also allows |
| 396 | to use an iterator yielding parameters instead of a sequence. |
| 397 | |
| 398 | \verbatiminput{sqlite3/executemany_1.py} |
| 399 | |
| 400 | Here's a shorter example using a generator: |
| 401 | |
| 402 | \verbatiminput{sqlite3/executemany_2.py} |
| 403 | \end{methoddesc} |
| 404 | |
| 405 | \begin{methoddesc}{executescript}{sql_script} |
| 406 | |
| 407 | This is a nonstandard convenience method for executing multiple SQL statements |
| 408 | at once. It issues a COMMIT statement before, then executes the SQL script it |
| 409 | gets as a parameter. |
| 410 | |
| 411 | \var{sql_script} can be a bytestring or a Unicode string. |
| 412 | |
| 413 | Example: |
| 414 | |
| 415 | \verbatiminput{sqlite3/executescript.py} |
| 416 | \end{methoddesc} |
| 417 | |
| 418 | \begin{memberdesc}{rowcount} |
| 419 | Although the \class{Cursor} class of the \module{sqlite3} module implements this |
| 420 | attribute, the database engine's own support for the determination of "rows |
| 421 | affected"/"rows selected" is quirky. |
| 422 | |
| 423 | For \code{SELECT} statements, \member{rowcount} is always None because we cannot |
| 424 | determine the number of rows a query produced until all rows were fetched. |
| 425 | |
| 426 | For \code{DELETE} statements, SQLite reports \member{rowcount} as 0 if you make a |
| 427 | \code{DELETE FROM table} without any condition. |
| 428 | |
| 429 | For \method{executemany} statements, the number of modifications are summed |
| 430 | up into \member{rowcount}. |
| 431 | |
| 432 | As required by the Python DB API Spec, the \member{rowcount} attribute "is -1 |
| 433 | in case no executeXX() has been performed on the cursor or the rowcount |
| 434 | of the last operation is not determinable by the interface". |
| 435 | \end{memberdesc} |
| 436 | |
| 437 | \subsection{SQLite and Python types\label{sqlite3-Types}} |
| 438 | |
| 439 | \subsubsection{Introduction} |
| 440 | |
| 441 | SQLite natively supports the following types: NULL, INTEGER, REAL, TEXT, BLOB. |
| 442 | |
| 443 | The following Python types can thus be sent to SQLite without any problem: |
| 444 | |
| 445 | \begin{tableii} {c|l}{code}{Python type}{SQLite type} |
| 446 | \lineii{None}{NULL} |
| 447 | \lineii{int}{INTEGER} |
| 448 | \lineii{long}{INTEGER} |
| 449 | \lineii{float}{REAL} |
| 450 | \lineii{str (UTF8-encoded)}{TEXT} |
| 451 | \lineii{unicode}{TEXT} |
| 452 | \lineii{buffer}{BLOB} |
| 453 | \end{tableii} |
| 454 | |
| 455 | This is how SQLite types are converted to Python types by default: |
| 456 | |
| 457 | \begin{tableii} {c|l}{code}{SQLite type}{Python type} |
| 458 | \lineii{NULL}{None} |
| 459 | \lineii{INTEGER}{int or long, depending on size} |
| 460 | \lineii{REAL}{float} |
| 461 | \lineii{TEXT}{depends on text_factory, unicode by default} |
| 462 | \lineii{BLOB}{buffer} |
| 463 | \end{tableii} |
| 464 | |
| 465 | The type system of the \module{sqlite3} module is extensible in both ways: you can store |
| 466 | additional Python types in a SQLite database via object adaptation, and you can |
| 467 | let the \module{sqlite3} module convert SQLite types to different Python types via |
| 468 | converters. |
| 469 | |
| 470 | \subsubsection{Using adapters to store additional Python types in SQLite databases} |
| 471 | |
| 472 | Like described before, SQLite supports only a limited set of types natively. To |
| 473 | use other Python types with SQLite, you must \strong{adapt} them to one of the sqlite3 |
| 474 | module's supported types for SQLite. So, one of NoneType, int, long, float, |
| 475 | str, unicode, buffer. |
| 476 | |
| 477 | The \module{sqlite3} module uses the Python object adaptation, like described in PEP 246 |
| 478 | for this. The protocol to use is \class{PrepareProtocol}. |
| 479 | |
| 480 | There are two ways to enable the \module{sqlite3} module to adapt a custom Python type |
| 481 | to one of the supported ones. |
| 482 | |
| 483 | \paragraph{Letting your object adapt itself} |
| 484 | |
| 485 | This is a good approach if you write the class yourself. Let's suppose you have |
| 486 | a class like this: |
| 487 | |
| 488 | \begin{verbatim} |
| 489 | class Point(object): |
| 490 | def __init__(self, x, y): |
| 491 | self.x, self.y = x, y |
| 492 | \end{verbatim} |
| 493 | |
| 494 | Now you want to store the point in a single SQLite column. You'll have to |
| 495 | choose one of the supported types first that you use to represent the point in. |
| 496 | Let's just use str and separate the coordinates using a semicolon. Then you |
| 497 | need to give your class a method \code{__conform__(self, protocol)} which must |
| 498 | return the converted value. The parameter \var{protocol} will be |
| 499 | \class{PrepareProtocol}. |
| 500 | |
| 501 | \verbatiminput{sqlite3/adapter_point_1.py} |
| 502 | |
| 503 | \paragraph{Registering an adapter callable} |
| 504 | |
| 505 | The other possibility is to create a function that converts the type to the |
| 506 | string representation and register the function with \method{register_adapter}. |
| 507 | |
| 508 | \verbatiminput{sqlite3/adapter_point_2.py} |
| 509 | |
| 510 | \begin{notice} |
| 511 | The type/class to adapt must be a new-style class, i. e. it must have |
| 512 | \class{object} as one of its bases. |
| 513 | \end{notice} |
| 514 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 515 | The \module{sqlite3} module has two default adapters for Python's built-in |
| 516 | \class{datetime.date} and \class{datetime.datetime} types. Now let's suppose |
| 517 | we want to store \class{datetime.datetime} objects not in ISO representation, |
| 518 | but as a \UNIX{} timestamp. |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 519 | |
| 520 | \verbatiminput{sqlite3/adapter_datetime.py} |
| 521 | |
| 522 | \subsubsection{Converting SQLite values to custom Python types} |
| 523 | |
| 524 | Now that's all nice and dandy that you can send custom Python types to SQLite. |
| 525 | But to make it really useful we need to make the Python to SQLite to Python |
| 526 | roundtrip work. |
| 527 | |
| 528 | Enter converters. |
| 529 | |
| 530 | Let's go back to the Point class. We stored the x and y coordinates separated |
| 531 | via semicolons as strings in SQLite. |
| 532 | |
| 533 | Let's first define a converter function that accepts the string as a parameter and constructs a Point object from it. |
| 534 | |
| 535 | \begin{notice} |
| 536 | Converter functions \strong{always} get called with a string, no matter |
| 537 | under which data type you sent the value to SQLite. |
| 538 | \end{notice} |
| 539 | |
| 540 | \begin{notice} |
| 541 | Converter names are looked up in a case-sensitive manner. |
| 542 | \end{notice} |
| 543 | |
| 544 | |
| 545 | \begin{verbatim} |
| 546 | def convert_point(s): |
| 547 | x, y = map(float, s.split(";")) |
| 548 | return Point(x, y) |
| 549 | \end{verbatim} |
| 550 | |
| 551 | Now you need to make the \module{sqlite3} module know that what you select from the |
| 552 | database is actually a point. There are two ways of doing this: |
| 553 | |
| 554 | \begin{itemize} |
| 555 | \item Implicitly via the declared type |
| 556 | \item Explicitly via the column name |
| 557 | \end{itemize} |
| 558 | |
| 559 | Both ways are described at \ref{sqlite3-Module-Contents} in the text explaining |
| 560 | the constants \constant{PARSE_DECLTYPES} and \constant{PARSE_COlNAMES}. |
| 561 | |
| 562 | |
| 563 | The following example illustrates both ways. |
| 564 | |
| 565 | \verbatiminput{sqlite3/converter_point.py} |
| 566 | |
| 567 | \subsubsection{Default adapters and converters} |
| 568 | |
| 569 | There are default adapters for the date and datetime types in the datetime |
| 570 | module. They will be sent as ISO dates/ISO timestamps to SQLite. |
| 571 | |
| 572 | The default converters are registered under the name "date" for datetime.date |
| 573 | and under the name "timestamp" for datetime.datetime. |
| 574 | |
| 575 | This way, you can use date/timestamps from Python without any additional |
| 576 | fiddling in most cases. The format of the adapters is also compatible with the |
| 577 | experimental SQLite date/time functions. |
| 578 | |
| 579 | The following example demonstrates this. |
| 580 | |
| 581 | \verbatiminput{sqlite3/pysqlite_datetime.py} |
| 582 | |
| 583 | \subsection{Controlling Transactions \label{sqlite3-Controlling-Transactions}} |
| 584 | |
| 585 | By default, the \module{sqlite3} module opens transactions implicitly before a DML |
| 586 | statement (INSERT/UPDATE/DELETE/REPLACE), and commits transactions implicitly |
| 587 | before a non-DML, non-DQL statement (i. e. anything other than |
| 588 | SELECT/INSERT/UPDATE/DELETE/REPLACE). |
| 589 | |
| 590 | So if you are within a transaction, and issue a command like \code{CREATE TABLE |
| 591 | ...}, \code{VACUUM}, \code{PRAGMA}, the \module{sqlite3} module will commit implicitly |
| 592 | before executing that command. There are two reasons for doing that. The first |
| 593 | is that some of these commands don't work within transactions. The other reason |
| 594 | is that pysqlite needs to keep track of the transaction state (if a transaction |
| 595 | is active or not). |
| 596 | |
| 597 | You can control which kind of "BEGIN" statements pysqlite implicitly executes |
| 598 | (or none at all) via the \var{isolation_level} parameter to the |
| 599 | \function{connect} call, or via the \member{isolation_level} property of |
| 600 | connections. |
| 601 | |
| 602 | If you want \strong{autocommit mode}, then set \member{isolation_level} to None. |
| 603 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 604 | Otherwise leave it at its default, which will result in a plain "BEGIN" |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 605 | statement, or set it to one of SQLite's supported isolation levels: DEFERRED, |
| 606 | IMMEDIATE or EXCLUSIVE. |
| 607 | |
| 608 | As the \module{sqlite3} module needs to keep track of the transaction state, you should |
| 609 | not use \code{OR ROLLBACK} or \code{ON CONFLICT ROLLBACK} in your SQL. Instead, |
| 610 | catch the \exception{IntegrityError} and call the \method{rollback} method of |
| 611 | the connection yourself. |
| 612 | |
| 613 | \subsection{Using pysqlite efficiently} |
| 614 | |
| 615 | \subsubsection{Using shortcut methods} |
| 616 | |
| 617 | Using the nonstandard \method{execute}, \method{executemany} and |
| 618 | \method{executescript} methods of the \class{Connection} object, your code can |
| 619 | be written more concisely, because you don't have to create the - often |
| 620 | superfluous \class{Cursor} objects explicitly. Instead, the \class{Cursor} |
| 621 | objects are created implicitly and these shortcut methods return the cursor |
| 622 | objects. This way, you can for example execute a SELECT statement and iterate |
| 623 | over it directly using only a single call on the \class{Connection} object. |
| 624 | |
| 625 | \verbatiminput{sqlite3/shortcut_methods.py} |
| 626 | |
| 627 | \subsubsection{Accessing columns by name instead of by index} |
| 628 | |
| 629 | One cool feature of the \module{sqlite3} module is the builtin \class{sqlite3.Row} class |
| 630 | designed to be used as a row factory. |
| 631 | |
| 632 | Rows wrapped with this class can be accessed both by index (like tuples) and |
| 633 | case-insensitively by name: |
| 634 | |
| 635 | \verbatiminput{sqlite3/rowclass.py} |
| 636 | |
| 637 | |