~ubuntu-branches/debian/sid/kexi/sid

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Pino Toscano
  • Date: 2017-06-24 20:10:10 UTC
  • Revision ID: package-import@ubuntu.com-20170624201010-5lrzd5r2vwthwifp
Tags: upstream-3.0.1.1
ImportĀ upstreamĀ versionĀ 3.0.1.1

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