Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHTDBEX.PostgreSQL.sql « System.Data.OleDb.jvm « ProviderTests « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 64ec295a4d163dba02726aaffc75686d89a73711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DROP FUNCTION GH_DUMMY(CHAR);


CREATE FUNCTION GH_DUMMY(CHAR) RETURNS refcursor AS $$
DECLARE 
   rct1 refcursor;
 
BEGIN
  OPEN rct1 FOR
	SELECT * FROM Customers where CustomerID = $1;
  RETURN rct1;
END;
$$ LANGUAGE 'plpgsql';