Open project

From TaskDepender
Jump to: navigation, search
(Implementation)
(Implementation)
 
Line 1: Line 1:
''This page describes the method used by the [[Administration]] to start a new project.''
+
''This page describes the method to start a new project.''
  
== Introduction ==
+
== Description ==
  
 
Opening a project can be a new or existing project.
 
Opening a project can be a new or existing project.
Line 41: Line 41:
  
 
The following table converts the possible SQLITE error-codes into error-codes for the [[Administration]]
 
The following table converts the possible SQLITE error-codes into error-codes for the [[Administration]]
 
 
{| valign="top" border="1" cellpadding="3" cellspacing="0"
 
|- style="color:white; background-color:#000000;" |
 
| '''Define''' || '''SQLite''' || '''Description'''
 
|-
 
| ADMIN_OK || SQLITE_OK || Successful result.
 
|-
 
| ADMIN_ERROR || SQLITE_ERROR || SQL error or missing database */
 
#define SQLITE_PERM        3  /* Access permission denied */
 
#define SQLITE_BUSY        5  /* The database file is locked */
 
#define SQLITE_READONLY    8  /* Attempt to write a readonly database */
 
#define SQLITE_IOERR      10  /* Some kind of disk I/O error occurred */
 
#define SQLITE_CORRUPT    11  /* The database disk image is malformed */
 
#define SQLITE_CANTOPEN    14  /* Unable to open the database file */
 
#define SQLITE_PROTOCOL    15  /* Database lock protocol error */
 
#define SQLITE_NOTADB      26  /* File opened that is not a database file */
 
 
/* end-of-error-codes */
 
 
 
|}
 
 
 
The
 
  
 
== Design ==
 
== Design ==

Latest revision as of 09:47, 23 October 2011

Personal tools