Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 73) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a00b81b0e1878487a6edaaca1b0dff00 |
User & Date: | drh 2000-06-07 15:39:04.000 |
Context
2000-06-07
| ||
23:51 | :-) (CVS 74) (check-in: 2ffeb8509c user: drh tags: trunk) | |
15:39 | :-) (CVS 73) (check-in: a00b81b0e1 user: drh tags: trunk) | |
15:24 | :-) (CVS 72) (check-in: 6f8de336d0 user: drh tags: trunk) | |
Changes
Changes to src/vdbe.c.
︙ | ︙ | |||
37 38 39 40 41 42 43 | ** inplicit conversion from one type to the other occurs as necessary. ** ** Most of the code in this file is taken up by the sqliteVdbeExec() ** function which does the work of interpreting a VDBE program. ** But other routines are also provided to help in building up ** a program instruction by instruction. ** | | | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | ** inplicit conversion from one type to the other occurs as necessary. ** ** Most of the code in this file is taken up by the sqliteVdbeExec() ** function which does the work of interpreting a VDBE program. ** But other routines are also provided to help in building up ** a program instruction by instruction. ** ** $Id: vdbe.c,v 1.27 2000/06/07 15:39:04 drh Exp $ */ #include "sqliteInt.h" #include <unistd.h> /* ** SQL is translated into a sequence of instructions to be ** executed by a virtual machine. Each instruction is an instance |
︙ | ︙ | |||
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 | break; } case SQLITE_NOMEM: { goto no_mem; } } p->aTab[i].index = 0; break; } /* Opcode: Close P1 * * ** ** Close a database table previously opened as P1. If P1 is not ** currently open, this instruction is a no-op. | > | 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 | break; } case SQLITE_NOMEM: { goto no_mem; } } p->aTab[i].index = 0; p->aTab[i].keyAsData = 0; break; } /* Opcode: Close P1 * * ** ** Close a database table previously opened as P1. If P1 is not ** currently open, this instruction is a no-op. |
︙ | ︙ |