代码搜索:prepare 有哪些应用?
找到约 10,000 项符合「prepare 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/183001/5259275
c prepare.c
/*-------------------------------------------------------------------------
*
* prepare.c
* Prepareable SQL statements via PREPARE, EXECUTE and DEALLOCATE
*
* This module also implements storag
www.eeworm.com/read/183001/5259856
h prepare.h
/*-------------------------------------------------------------------------
*
* prepare.h
* PREPARE, EXECUTE and DEALLOCATE commands, and prepared-stmt storage
*
*
* Copyright (c) 2002-2005, P
www.eeworm.com/read/183001/5260084
c prepare.c
/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/prepare.c,v 1.14.2.1 2005/11/30 12:50:37 meskes Exp $ */
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
#include
#include "ecpgt
www.eeworm.com/read/183001/5260286
out prepare.out
-- Regression tests for prepareable statements
PREPARE q1 AS SELECT 1;
EXECUTE q1;
?column?
----------
1
(1 row)
-- should fail
PREPARE q1 AS SELECT 2;
ERROR: prepared statement "q1" alrea
www.eeworm.com/read/183001/5260423
sql prepare.sql
-- Regression tests for prepareable statements
PREPARE q1 AS SELECT 1;
EXECUTE q1;
-- should fail
PREPARE q1 AS SELECT 2;
-- should succeed
DEALLOCATE q1;
PREPARE q1 AS SELECT 2;
EXECUTE q1;
-- sq
www.eeworm.com/read/167562/5458086
c prepare.c
/*
** 2005 May 25
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness fo
www.eeworm.com/read/331534/3407818
h prepare.h
//
// Prepare.h
//
// $Id: //poco/1.3/Data/include/Poco/Data/Prepare.h#2 $
//
// Library: Data
// Package: DataCore
// Module: Prepare
//
// Definition of the Prepare class.
//
// Copyrigh