Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Revise docs on how to obtain the source code. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c13ff09745ed7dee9da73a80a07ce5f1 |
User & Date: | mistachkin 2013-02-13 03:06:10.562 |
Context
2013-02-13
| ||
21:59 | Add doc wording to clarify that the connection pool will not work properly in WPF applications. Pursuant to [393d954be0]. check-in: dabfe38a9e user: mistachkin tags: trunk | |
03:06 | Revise docs on how to obtain the source code. check-in: c13ff09745 user: mistachkin tags: trunk | |
2013-02-12
| ||
10:51 | Adjust one #if directive in the SQLiteConnection class to explicitly exclude the .NET Compact Framework. check-in: 562a31fa49 user: mistachkin tags: trunk | |
Changes
Changes to www/source.wiki.
1 2 3 4 5 6 | <title>Source Code</title> <p> Follow these steps to obtain the latest (i.e. unreleased) source code for the System.Data.SQLite project. To obtain the latest officially released source code instead, refer to the [./downloads.wiki | downloads page]. Unless | | | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <title>Source Code</title> <p> Follow these steps to obtain the latest (i.e. unreleased) source code for the System.Data.SQLite project. To obtain the latest officially released source code instead, refer to the [./downloads.wiki | downloads page]. Unless otherwise noted, all steps need to be performed in the order specified. </p> <a name="assumptions"></a> <h2>Assumptions & Prerequisites</h2> <p> The string "<b><root></b>" represents the directory where the local working copy of source tree (a.k.a. the working check-out directory) for the System.Data.SQLite project is to reside. This should be a completely empty directory. </p> <p> The string "<b><repositories></b>" represents the directory where the local clone of the repository for the System.Data.SQLite project (and potentially other projects) is to reside. </p> <a name="fossil"></a> <h2>Obtain & Install Fossil Itself</h2> <p> The [http://www.fossil-scm.org | Fossil] open-source [http://en.wikipedia.org/wiki/Distributed_revision_control | distributed version control] system is a computer program that must be installed on your machine before you use it. Fortunately, installing Fossil is very easy. Fossil consists of a single executable file that you simply download and run. For convenience, the Fossil |
︙ | ︙ | |||
51 52 53 54 55 56 57 | command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a complete clone (i.e. local copy) of the entire source code repository for the System.Data.SQLite project, including the entire check-in history: | | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a complete clone (i.e. local copy) of the entire source code repository for the System.Data.SQLite project, including the entire check-in history: <b>fossil [http://www.fossil-scm.org/index.html/help/clone | clone] http://system.data.sqlite.org/ <repositories>/sds.fossil</b> </li> <li> Please note that the repository itself uses an [http://www.fossil-scm.org/index.html/doc/trunk/www/fileformat.wiki | enduring file format] stored in a single [http://www.fossil-scm.org/index.html/doc/trunk/www/tech_overview.wiki | SQLite database file] with a particular schema. </li> <li> |
︙ | ︙ | |||
84 85 86 87 88 89 90 | Change the current directory to "<b><root></b>" using a command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a local working copy of all the files that are currently part of the System.Data.SQLite project: | | | | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | Change the current directory to "<b><root></b>" using a command similar to: <b>cd /D <root></b> </li> <li> Enter the following command to create a local working copy of all the files that are currently part of the System.Data.SQLite project: <b>fossil [http://www.fossil-scm.org/index.html/help/open | open] <repositories>/sds.fossil</b> </li> <li> The local source tree should now be ready for use as described in the [./build.wiki | build procedures] and/or [./test.wiki | test procedures]. </li> <li> In the future, to update the local working copy with the latest changes from the official System.Data.SQLite repository (i.e. instead of having to re-clone the entire thing), enter the following command from the same directory where the working copy is located: <b>fossil [http://www.fossil-scm.org/index.html/help/update | update]</b> </li> </ol> |