⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlspecialcolumns.c

📁 这个是内存数据库的客户端
💻 C
字号:
/* * The contents of this file are subject to the MonetDB Public License * Version 1.1 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * http://monetdb.cwi.nl/Legal/MonetDBLicense-1.1.html * * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations * under the License. * * The Original Code is the MonetDB Database System. * * The Initial Developer of the Original Code is CWI. * Portions created by CWI are Copyright (C) 1997-2007 CWI. * All Rights Reserved. *//* * This code was created by Peter Harvey (mostly during Christmas 98/99). * This code is LGPL. Please ensure that this message remains in future * distributions and uses of this code (thats about all I get out of it). * - Peter Harvey pharvey@codebydesign.com *  * This file has been modified for the MonetDB project.  See the file * Copyright in this directory for more information. *//********************************************************************** * SQLSpecialColumns() * CLI Compliance: X/Open * * Note: catalogs are not supported, we ignore any value set for * szCatalogName. * * Author: Martin van Dinther * Date  : 30 aug 2002 * **********************************************************************/#include "ODBCGlobal.h"#include "ODBCStmt.h"#include "ODBCUtil.h"static SQLRETURNSQLSpecialColumns_(ODBCStmt *stmt, SQLUSMALLINT nIdentifierType, SQLCHAR *szCatalogName, SQLSMALLINT nCatalogNameLength, SQLCHAR *szSchemaName, SQLSMALLINT nSchemaNameLength, SQLCHAR *szTableName, SQLSMALLINT nTableNameLength, SQLUSMALLINT nScope,		   SQLUSMALLINT nNullable){	RETCODE rc;	/* buffer for the constructed query to do meta data retrieval */	char *query = NULL;	char *query_end = NULL;	fixODBCstring(szCatalogName, nCatalogNameLength, SQLSMALLINT, addStmtError, stmt);	fixODBCstring(szSchemaName, nSchemaNameLength, SQLSMALLINT, addStmtError, stmt);	fixODBCstring(szTableName, nTableNameLength, SQLSMALLINT, addStmtError, stmt);#ifdef ODBCDEBUG	ODBCLOG("\"%.*s\" \"%.*s\" \"%.*s\" %hd %hu\n", nCatalogNameLength, (char*)szCatalogName, nSchemaNameLength, (char*)szSchemaName, nTableNameLength, (char*)szTableName, nScope, nNullable);#endif	/* check for valid IdentifierType argument */	switch (nIdentifierType) {	case SQL_BEST_ROWID:	case SQL_ROWVER:		break;	default:		/* Column type out of range */		addStmtError(stmt, "HY097", NULL, 0);		return SQL_ERROR;	}	/* check for valid Scope argument */	switch (nScope) {	case SQL_SCOPE_CURROW:	case SQL_SCOPE_TRANSACTION:	case SQL_SCOPE_SESSION:		break;	default:		/* Scope type out of range */		addStmtError(stmt, "HY098", NULL, 0);		return SQL_ERROR;	}	/* check for valid Nullable argument */	switch (nNullable) {	case SQL_NO_NULLS:	case SQL_NULLABLE:		break;	default:		/* Nullable type out of range */		addStmtError(stmt, "HY099", NULL, 0);		return SQL_ERROR;	}	/* check if a valid (non null, not empty) table name is supplied */	if (szTableName == NULL) {		/* Invalid use of null pointer */		addStmtError(stmt, "HY009", NULL, 0);		return SQL_ERROR;	}	if (nTableNameLength == 0) {		/* Invalid string or buffer length */		addStmtError(stmt, "HY090", NULL, 0);		return SQL_ERROR;	}	/* first create a string buffer (1000 extra bytes is plenty */	query = (char *) malloc(1000 + nTableNameLength + nSchemaNameLength);	assert(query);	query_end = query;	/* SQLSpecialColumns returns a table with the following columns:	   SMALLINT     scope	   VARCHAR      column_name NOT NULL	   SMALLINT     data_type NOT NULL	   VARCHAR      type_name NOT NULL	   INTEGER      column_size	   INTEGER      buffer_length	   SMALLINT     decimal_digits	   SMALLINT     pseudo_column	 */	if (nIdentifierType == SQL_BEST_ROWID) {		/* Select from the key table the (smallest) primary/unique key */		/* Note: SCOPE is SQL_SCOPE_TRANSACTION is 1 */		/* Note: PSEUDO_COLUMN is SQL_PC_NOT_PSEUDO is 1 */		strcpy(query_end,		       "select "		       "cast(1 as smallint) as scope, "		       "c.\"name\" as column_name, "		       "cast(c.\"type\" as smallint) as data_type, "		       "c.\"type\" as type_name, "		       "cast(c.\"type_digits\" as integer) as column_size, "		       "cast(0 as integer) as buffer_length, "		       "cast(c.\"type_scale\" as smallint) as decimal_digits, "		       "cast(1 as smallint) as pseudo_column "		       "from sys.\"schemas\" s, sys.\"tables\" t, "		       "sys.\"columns\" c, sys.\"keys\" k, "		       "sys.\"keycolumns\" kc "		       "where s.\"id\" = t.\"schema_id\" and "		       "t.\"id\" = c.\"table_id\" and "		       "t.\"id\" = k.\"table_id\" and "		       "c.\"name\" = kc.\"column\" and "		       "kc.\"id\" = k.\"id\" and "		       "k.\"type\" in (0, 1)");		query_end += strlen(query_end);		/* TODO: improve the SQL to get the correct result:		   - only one set of columns should be returned, also when		   multiple primary keys are available for this table.		   - when the table has NO primary key it should return the		   columns of a unique key (only from ONE unique key which		   is also the best/smallest key)		   TODO: optimize SQL:		   - when no szSchemaName is set (see above) also no filtering on		   SCHEMA NAME and join with table SCHEMAS is needed!		 */		/* add the selection condition */		/* search pattern is not allowed for table name so use = and not LIKE */		sprintf(query_end, " and t.\"name\" = '%.*s'", nTableNameLength, (char*)szTableName);		query_end += strlen(query_end);		if (szSchemaName != NULL && nSchemaNameLength > 0) {			/* filtering requested on schema name */			/* search pattern is not allowed so use = and not LIKE */			sprintf(query_end, " and s.\"name\" = '%.*s'", nSchemaNameLength, (char*)szSchemaName);			query_end += strlen(query_end);		}		/* add an extra selection when SQL_NO_NULLS is requested */		if (nNullable == SQL_NO_NULLS) {			strcpy(query_end, " and c.\"null\" = false");			query_end += strlen(query_end);		}		/* no ordering needed */	} else {		assert(nIdentifierType == SQL_ROWVER);		/* The backend does not have such info available */		/* create just a query which results in zero rows */		/* Note: pseudo_column is sql_pc_unknown is 0 */		strcpy(query_end,		       "select "		       "cast(null as smallint) as scope, "		       "cast('' as varchar(1)) as column_name, "		       "cast(1 as smallint) as data_type, "		       "cast('char' as varchar(4)) as type_name, "		       "cast(1 as integer) as column_size, "		       "cast(1 as integer) as buffer_length, "		       "cast(0 as smallint) as decimal_digits, "		       "cast(0 as smallint) as pseudo_column "		       "where 0 = 1");		query_end += strlen(query_end);	}	assert(query_end - query < 1000 + nTableNameLength + nSchemaNameLength);	/* query the MonetDB data dictionary tables */	rc = SQLExecDirect_(stmt, (SQLCHAR *) query, (SQLINTEGER) (query_end - query));	free(query);	return rc;}SQLRETURN SQL_APISQLSpecialColumns(SQLHSTMT hStmt, SQLUSMALLINT nIdentifierType, SQLCHAR *szCatalogName, SQLSMALLINT nCatalogNameLength, SQLCHAR *szSchemaName, SQLSMALLINT nSchemaNameLength, SQLCHAR *szTableName, SQLSMALLINT nTableNameLength, SQLUSMALLINT nScope,		  SQLUSMALLINT nNullable){	ODBCStmt *stmt = (ODBCStmt *) hStmt;#ifdef ODBCDEBUG	ODBCLOG("SQLSpecialColumns " PTRFMT " %d ", PTRFMTCAST hStmt, nIdentifierType);#endif	if (!isValidStmt(stmt))		 return SQL_INVALID_HANDLE;	clearStmtErrors(stmt);	return SQLSpecialColumns_(stmt, nIdentifierType, szCatalogName, nCatalogNameLength, szSchemaName, nSchemaNameLength, szTableName, nTableNameLength, nScope, nNullable);}#ifdef WITH_WCHARSQLRETURN SQL_APISQLSpecialColumnsA(SQLHSTMT hStmt, SQLUSMALLINT nIdentifierType, SQLCHAR *szCatalogName, SQLSMALLINT nCatalogNameLength, SQLCHAR *szSchemaName, SQLSMALLINT nSchemaNameLength, SQLCHAR *szTableName, SQLSMALLINT nTableNameLength, SQLUSMALLINT nScope,		   SQLUSMALLINT nNullable){	return SQLSpecialColumns(hStmt, nIdentifierType, szCatalogName, nCatalogNameLength, szSchemaName, nSchemaNameLength, szTableName, nTableNameLength, nScope, nNullable);}SQLRETURN SQL_APISQLSpecialColumnsW(SQLHSTMT hStmt, SQLUSMALLINT nIdentifierType, SQLWCHAR * szCatalogName, SQLSMALLINT nCatalogNameLength, SQLWCHAR * szSchemaName, SQLSMALLINT nSchemaNameLength, SQLWCHAR * szTableName, SQLSMALLINT nTableNameLength, SQLUSMALLINT nScope,		   SQLUSMALLINT nNullable){	ODBCStmt *stmt = (ODBCStmt *) hStmt;	SQLRETURN rc = SQL_ERROR;	SQLCHAR *catalog = NULL, *schema = NULL, *table = NULL;#ifdef ODBCDEBUG	ODBCLOG("SQLSpecialColumnsW " PTRFMT " %d ", PTRFMTCAST hStmt, nIdentifierType);#endif	if (!isValidStmt(stmt))		 return SQL_INVALID_HANDLE;	clearStmtErrors(stmt);	fixWcharIn(szCatalogName, nCatalogNameLength, SQLCHAR, catalog, addStmtError, stmt, goto exit);	fixWcharIn(szSchemaName, nSchemaNameLength, SQLCHAR, schema, addStmtError, stmt, goto exit);	fixWcharIn(szTableName, nTableNameLength, SQLCHAR, table, addStmtError, stmt, goto exit);	rc = SQLSpecialColumns_(stmt, nIdentifierType, catalog, SQL_NTS, schema, SQL_NTS, table, SQL_NTS, nScope, nNullable);      exit:	if (catalog)		free(catalog);	if (schema)		free(schema);	if (table)		free(table);	return rc;}#endif /* WITH_WCHAR */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -