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

📄 xact.c

📁 在Linux/Unix下面访问WINDOWS SQLSERVER 的ODBC驱动程序
💻 C
字号:
/* FreeTDS - Library of routines accessing Sybase and Microsoft databases * Copyright (C) 1998-1999  Brian Bruns * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#if HAVE_CONFIG_H#include <config.h>#endif /* HAVE_CONFIG_H */#include <stdarg.h>#include <stdio.h>#if HAVE_UNISTD_H#include <unistd.h>#endif /* HAVE_UNISTD_H */#include "tds.h"#include "sybfront.h"#include "sybdb.h"#include "dblib.h"#ifdef DMALLOC#include <dmalloc.h>#endifTDS_RCSID(var, "$Id: xact.c,v 1.11 2006/12/26 14:56:19 freddy77 Exp $");voidbuild_xact_string(char *xact_name, char *service_name, DBINT commid, char *result){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED build_xact_string()\n");}RETCODEremove_xact(DBPROCESS * connect, DBINT commid, int n){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED remove_xact()\n");	return SUCCEED;}RETCODEabort_xact(DBPROCESS * connect, DBINT commid){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED abort_xact()\n");	return SUCCEED;}voidclose_commit(DBPROCESS * connect){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED close_commit()\n");}RETCODEcommit_xact(DBPROCESS * connect, DBINT commid){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED commit_xact()\n");	return SUCCEED;}DBPROCESS *open_commit(LOGINREC * login, char *servername){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED open_commit()\n");	return NULL;}RETCODEscan_xact(DBPROCESS * connect, DBINT commid){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED scan_xact()\n");	return SUCCEED;}DBINTstart_xact(DBPROCESS * connect, char *application_name, char *xact_name, int site_count){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED start_xact()\n");	return 0;}DBINTstat_xact(DBPROCESS * connect, DBINT commid){	tdsdump_log(TDS_DBG_FUNC, "UNIMPLEMENTED stat_xact()\n");	return 0;}

⌨️ 快捷键说明

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