File: ChangeLog

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (38 lines) | stat: -rw-r--r-- 1,709 bytes parent folder | download | duplicates (11)
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
35
36
37
38
02/03/04 - Added sqlite system tables sqlite_master and sqlite_temp_master to
the table list etc.
02/03/04 - Changed default string size to 0, which is unlimited.
22/03/04 - Cleared up some deallocations.
22/03/04 - Allowed for accessing same field name within multiple table
           query. e.g. select fred.id, sid.id from fred, sid
01/04/04 - Enabled Field aliasing for exec.
03/04/04 - The host variable within the database class can be used as the
           database home, that is, set it to the path where the database files
           are located.
03/04/04 - The location of the database files is order by:
           a) If fullpath given then use this.
           b) If Host variable set, then look at the path set in the variable.
           c) If environment variable GAMBAS_SQLITE_DBHOME is set then use.
           d) Current working directory.
04/06/04 - Allow memory only database. e.g. :memory: as the database name.

* 17 Jul 2004 - BM

- By default, an in-memory database is opened if no database name is specified.
- An in_memory database returns as user-list only the current user, with admin rights.
- The databases are not searched by default in the current working directory anymore. 
  Instead, they are searched in the /tmp/gambas.%pid%/sqlite/ directory.
  
* 29 Aug 2004 - BM

- Many clean-ups in database_create(). The function FullPath() is not necessary
  anymore, and has been removed.
- Fix table_index() so that it returns error if no true primary key is found
  in the table.
  
* 01 Sep 2004 - NG
  
- Checks that a full path points at a real SQLite database in FindDatabase().

* 20 Nov 2004 - DC

- I've replaced all float values for double values in the sqlite driver.