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

📄 t0004.c

📁 unix上的TDS协议实现
💻 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. */#include <stdio.h>#include <tds.h>static char  software_version[]   = "$Id: t0004.c,v 1.2 2002/08/29 09:54:54 freddy77 Exp $";static void *no_unused_var_warn[] = {software_version, no_unused_var_warn};char *varchar_as_string(   TDSSOCKET  *tds,   int         col_idx){   static char  result[256];    const char  *row     = tds->res_info->current_row;   const int    offset  = tds->res_info->columns[col_idx]->column_offset;   const void  *value   = (row+offset);   strncpy(result, (char *)value, sizeof(result)-1);   result[sizeof(result)-1] = '\0';   return result;}int main(){   TDSLOGIN *login;   TDSSOCKET *tds;   int verbose = 0;   int rc;   int i;   char *len200 = "01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789";   char long_query[1000];   sprintf(long_query, "SELECT name FROM #longquerytest WHERE (name = 'A%s' OR name = 'B%s' OR name = 'C%s' OR name = 'correct')", len200, len200, len200);   fprintf(stdout, "%s: Test large (>512 bytes) queries\n", __FILE__);   rc = try_tds_login(&login, &tds, __FILE__, verbose);   if (rc != TDS_SUCCEED) {      fprintf(stderr, "try_tds_login() failed\n");      return 1;   }   /* do not check error here, if TABLE is not create this give error */   rc = run_query(tds, "DROP TABLE #longquerytest");   rc = run_query(tds, "CREATE TABLE #longquerytest (name varchar(255))");   if (rc != TDS_SUCCEED) { return 1; }   rc = run_query(tds, "INSERT #longquerytest (name) VALUES ('incorrect')");   if (rc != TDS_SUCCEED) { return 1; }   rc = run_query(tds, "INSERT #longquerytest (name) VALUES ('correct')");   if (rc != TDS_SUCCEED) { return 1; }   /*    * The heart of the test    */   if (verbose) { fprintf(stdout, "block size %d\n", tds->env->block_size); }   rc = tds_submit_query(tds, long_query);   while ((rc=tds_process_result_tokens(tds))==TDS_SUCCEED) {      if (tds->res_info->columns[0]->column_type != SYBVARCHAR) {         fprintf(stderr, "Wrong column_type in %s\n", __FILE__);         return 1;      }      while ((rc=tds_process_row_tokens(tds))==TDS_SUCCEED) {         if (verbose) {            printf("col %i is %s\n", i, varchar_as_string(tds, 0));         }      }      if (rc == TDS_FAIL) {         fprintf(stderr, "tds_process_row_tokens() returned TDS_FAIL\n");         return 1;      }      else if (rc != TDS_NO_MORE_ROWS) {         fprintf(stderr, "tds_process_row_tokens() unexpected return\n");         return 1;      }   }   if (rc == TDS_FAIL) {      fprintf(stderr, "tds_process_result_tokens() returned TDS_FAIL for long query\n");      return 1;   }   else if (rc != TDS_NO_MORE_RESULTS) {      fprintf(stderr, "tds_process_result_tokens() unexpected return\n");   }   /* do not check error here, if TABLE is not create this give error */   rc = run_query(tds, "DROP TABLE #longquerytest");   try_tds_logout(login, tds, verbose);   return 0;}/* Run query for which there should be no return results */int run_query(TDSSOCKET *tds, char *query){   int rc;   rc = tds_submit_query(tds, query);   if (rc != TDS_SUCCEED) {      fprintf(stderr, "tds_submit_query() failed for query '%s'\n", query);      return TDS_FAIL;   }   while ((rc=tds_process_result_tokens(tds))==TDS_SUCCEED) {      if (tds->res_info->rows_exist) {         fprintf(stderr, "Error:  query should not return results\n");         return TDS_FAIL;      }   }   if (rc == TDS_FAIL) {      /* probably okay - DROP TABLE might cause this */      /* fprintf(stderr, "tds_process_result_tokens() returned TDS_FAIL for '%s'\n", query); */   }   else if (rc != TDS_NO_MORE_RESULTS) {      fprintf(stderr, "tds_process_result_tokens() unexpected return\n");      return TDS_FAIL;   }  return TDS_SUCCEED;}

⌨️ 快捷键说明

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