aboutsummaryrefslogtreecommitdiff
path: root/src/vmod.vcc
blob: 57869e08c8b338e382620dcda657961a53ef0a61 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# This file is part of vmod-sql
# Copyright (C) 2013-2014 Sergey Poznyakoff
#
# Vmod-sql is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# Vmod-sql is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with vmod-sql.  If not, see <http://www.gnu.org/licenses/>.

$Module sql 3 SQL access functions for Varnish Cache

COLOPHON
========
This document provides a short description of the **sql** module.
For a detailed documentation, please see the vmod-sql(3) manual page.

You will find documentation sources in subdirectory **doc** of the
**vmod-sql** source tree.

DESCRIPTION
===========
Vmod-sql  provides  functions  for accessing SQL databases from Varnish
configuration files.  It supports MySQL and PostgreSQL.

$Init module_init
$Function INT connect(PRIV_VCL, STRING, STRING)

Description
	Initiates a connection to the database.  Returns integer value,
	which should be passed as first argument to another module's
	functions to identify the connection to operate upon.

$Function VOID connect_init(PRIV_VCL, STRING, STRING)

Description
	Same as **sql.connect**, but succeeds only if the connection is
	assigned the descriptor 0.  This function is provided as a shortcut
	to use when only one database connection is needed.

$Function BOOL query(PRIV_VCL, INT, STRING, STRING)

Description
	Performs a database query given as its second argument.  Third
	argument is a list of variable assignments separated with semicolons.
        Each assignment has the form *NAME*=*VALUE*.

	Before being executed, the query is expanded by replacing each
	occurrence of **$NAME** construct (a variable reference) with the
	corresponding *VALUE* from the third argument.  Similarly to the
	shell syntax, the variable  reference can be written as **${NAME}**. 

$Function STRING result(PRIV_VCL, INT, INT, INT)

Description
	Returns the value of the column identified by arguments 2 and 3
	(row and column numbers).  

$Function INT affected(PRIV_VCL, INT)

Description
	If the most recent query updated the database, returns the number
	of affected rows.

$Function INT ntuples(PRIV_VCL, INT)

Description
	Returns the number of tuples (rows) returned by the query.

$Function INT nfields(PRIV_VCL, INT)

Description
	Returns the number of fields in each tuple returned by the
        query.

Return to:

Send suggestions and report system problems to the System administrator.