~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to kexi/tests/startup/testdb.kexis

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This file contains information for accessing Kexi project(s)
 
3
# stored on a database server
 
4
#
 
5
# Description: The file can contain one special "File Information" 
 
6
# section and one or more sections for defining database connections.
 
7
#
 
8
 
 
9
[File Information]
 
10
# Version information for this file format, "1" is by default.
 
11
# You can forget about adding this.
 
12
version=1
 
13
 
 
14
# begin of section for a shortcut to a single database
 
15
[Test Database]
 
16
 
 
17
# The type of this section. Can be:
 
18
# - database: a single database project together with 
 
19
#   it's connection parameters
 
20
# - connection: connection arameters only, without database name
 
21
#   user will be able to see a list of databases provided 
 
22
#   for the connection and open one of them. (not yet implemented)
 
23
type=database
 
24
 
 
25
# Database driver (engine) name like: mysql, postgresql.
 
26
engine=mysql
 
27
 
 
28
# Additional human-readable caption for informational purposes.
 
29
caption=Test Project
 
30
 
 
31
# Database name, or connection name, depending on type of this section.
 
32
name=testdb
 
33
 
 
34
# Server name, for local connection. Can be empty or equal to "localhost".
 
35
server=localhost
 
36
 
 
37
# TCP/IP port, leave it empty if default port for a given 
 
38
# engine should be used.
 
39
port=3333
 
40
 
 
41
# Username, leave empty if you want to reuse your login name.
 
42
user=testuser
 
43
 
 
44
# User password (DANGEROUS: currently plain text!). 
 
45
# Leave it empty, and you will be asked for password everytime 
 
46
# you're opening your database. 
 
47
# KDE Wallet will be supported in the future.
 
48
password=testy
 
49
 
 
50
# Additional (probably multiline) human-readable caption 
 
51
# for informational purposes. Line endings should be netered as \n.
 
52
comment=My favourite test project
 
53
 
 
54
# Set this to 1, if you want to use socket file (named pipe) 
 
55
# instead of TCP/IP for your local connection here.
 
56
# Ignored for remote connections. 
 
57
useLocalSocketFile=0
 
58
 
 
59
# Enter local socket file name (named pipe) for your local connection here.
 
60
# Leave it empty if you want to use default socket file.
 
61
# Ignored for remote connections. 
 
62
localSocketFile=
 
63