Cleanup of source.
authorBruce Momjian
Sun, 11 Feb 2001 04:56:58 +0000 (04:56 +0000)
committerBruce Momjian
Sun, 11 Feb 2001 04:56:58 +0000 (04:56 +0000)
14 files changed:
src/interfaces/libpq/fe-misc.c
src/interfaces/odbc/convert.c
src/interfaces/odbc/dlg_specific.c
src/interfaces/odbc/drvconn.c
src/interfaces/odbc/execute.c
src/interfaces/odbc/info.c
src/interfaces/odbc/isql.h
src/interfaces/odbc/options.c
src/interfaces/odbc/qresult.c
src/interfaces/odbc/resource.h
src/interfaces/odbc/setup.c
src/interfaces/odbc/socket.c
src/interfaces/odbc/statement.c
src/interfaces/odbc/tuplelist.c

index 910f705f6e300710d5fdc97195542317a3ba5c38..ce3a8fef113918b721febe095cd2e6eb3467b78d 100644 (file)
@@ -25,7 +25,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.44 2001/02/10 02:31:30 tgl Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-misc.c,v 1.45 2001/02/11 04:56:57 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -645,9 +645,9 @@ pqFlush(PGconn *conn)
                case ECONNRESET:
 #endif
                    printfPQExpBuffer(&conn->errorMessage,
-                                     "pqFlush() -- backend closed the channel unexpectedly.\n"
-                                     "\tThis probably means the backend terminated abnormally"
-                          " before or while processing the request.\n");
+                       "pqFlush() -- backend closed the channel unexpectedly.\n"
+                       "\tThis probably means the backend terminated abnormally"
+                       " before or while processing the request.\n");
 
                    /*
                     * We used to close the socket here, but that's a bad
@@ -661,8 +661,8 @@ pqFlush(PGconn *conn)
 
                default:
                    printfPQExpBuffer(&conn->errorMessage,
-                     "pqFlush() --  couldn't send data: errno=%d\n%s\n",
-                                     errno, strerror(errno));
+                       "pqFlush() --  couldn't send data: errno=%d\n%s\n",
+                       errno, strerror(errno));
                    /* We don't assume it's a fatal error... */
                    return EOF;
            }
index 719ff43be035bb3b41c53dafa0faea6171ffdb38..d992090274b1e3f5ca407681689493e9c11dac5b 100644 (file)
@@ -233,6 +233,7 @@ copy_and_convert_field(StatementClass * stmt, Int4 field_type, void *value, Int2
    *********************************************************************/
    switch (field_type)
    {
+
            /*
             * $$$ need to add parsing for date/time/timestamp strings in
             * PG_TYPE_CHAR,VARCHAR $$$
@@ -462,6 +463,7 @@ copy_and_convert_field(StatementClass * stmt, Int4 field_type, void *value, Int2
    }
    else
    {
+
        /*
         * for SQL_C_CHAR, it's probably ok to leave currency symbols in.
         * But to convert to numeric types, it is necessary to get rid of
@@ -1228,6 +1230,7 @@ convert_escape(char *value)
    }
    else if (strcmp(key, "fn") == 0)
    {
+
        /*
         * Function invocation Separate off the func name, skipping
         * trailing whitespace.
index 7c8f699b2bfad316d23147428e06976539127e69..64bf0e76c4d78b86f43745eba1cf80be5d017f72 100644 (file)
@@ -49,6 +49,7 @@ extern GLOBAL_VALUES globals;
 void
 SetDlgStuff(HWND hdlg, ConnInfo * ci)
 {
+
    /*
     * If driver attribute NOT present, then set the datasource name and
     * description
@@ -773,6 +774,7 @@ getGlobalDefaults(char *section, char *filename, char override)
    /* Dont allow override of an override! */
    if (!override)
    {
+
        /*
         * ConnSettings is stored in the driver section and per datasource
         * for override
index 52fff3e5afc71dd75374efd71e67cb333a19d281..97d7279237a6178d904dd96fbe319989c3538211 100644 (file)
@@ -215,6 +215,7 @@ dialog:
 
    if (szConnStrOut)
    {
+
        /*
         * Return the completed string to the caller. The correct method
         * is to only construct the connect string if a dialog was put up,
index 69db860d3b474ac9946982841ffeebdf25d98b5c..0174cdede939f86fb01a36af9beaff7a46cb0bf4 100644 (file)
@@ -437,6 +437,7 @@ SQLCancel(
     */
    if (stmt->data_at_exec < 0)
    {
+
        /*
         * MAJOR HACK for Windows to reset the driver manager's cursor
         * state: Because of what seems like a bug in the Odbc driver
index 7c22f0b3ed98fb64b6a7fd750722ac766fa7582e..c67ac0a4bd0fd9281765310709ade0ff63503d83 100644 (file)
@@ -201,7 +201,7 @@ SQLGetInfo(
 
            /*
             * The ODBC spec wants ##.##.#### ...whatever... so prepend
-            * the driver version number to the dbms version string 
+            * the driver version number to the dbms version string
             */
            sprintf(tmp, "%s %s", POSTGRESDRIVERVERSION, conn->pg_version);
            p = tmp;
@@ -1324,6 +1324,7 @@ SQLTables(
    result = SQLFetch(htbl_stmt);
    while ((result == SQL_SUCCESS) || (result == SQL_SUCCESS_WITH_INFO))
    {
+
        /*
         * Determine if this table name is a system table. If treating
         * system tables as regular tables, then no need to do this test.
index de50b89248765f5a6176b044e1c8bf4c52e1736b..6df798a5f1dbe67b7a55e213959d9654ef6ec720 100644 (file)
@@ -204,26 +204,20 @@ extern        "C"
                                                 SWORD cbCursorMax,
                                                 SWORD FAR * pcbCursor);
 
-   RETCODE SQL_API SQLNumResultCols(HSTMT hstmt,
-                                                SWORD FAR * pccol);
+   RETCODE SQL_API SQLNumResultCols(HSTMT hstmt, SWORD FAR * pccol);
 
-   RETCODE SQL_API SQLPrepare(HSTMT hstmt,
-                                          UCHAR FAR * szSqlStr,
+   RETCODE SQL_API SQLPrepare(HSTMT hstmt, UCHAR FAR * szSqlStr,
                                           SDWORD cbSqlStr);
 
-   RETCODE SQL_API SQLRowCount(HSTMT hstmt,
-                                           SDWORD FAR * pcrow);
+   RETCODE SQL_API SQLRowCount(HSTMT hstmt, SDWORD FAR * pcrow);
 
-   RETCODE SQL_API SQLSetCursorName(HSTMT hstmt,
-                                                UCHAR FAR * szCursor,
+   RETCODE SQL_API SQLSetCursorName(HSTMT hstmt, UCHAR FAR * szCursor,
                                                 SWORD cbCursor);
 
-   RETCODE SQL_API SQLTransact(HENV henv,
-                                           HDBC hdbc,
+   RETCODE SQL_API SQLTransact(HENV henv, HDBC hdbc,
                                            UWORD fType);
 
-   RETCODE SQL_API SQLSetParam(HSTMT hstmt,
-                                           UWORD ipar,
+   RETCODE SQL_API SQLSetParam(HSTMT hstmt, UWORD ipar,
                                            SWORD fCType,
                                            SWORD fSqlType,
                                            UDWORD cbColDef,
index 2ea3d6e2f61d5a8e38bc2098ca120b8117cf1e81..f4797e546e2e76e7e10d2311a1fa04c86db5345a 100644 (file)
@@ -307,6 +307,7 @@ SQLSetConnectOption(
 
    switch (fOption)
    {
+
            /*
             * Statement Options (apply to all stmts on the connection and
             * become defaults for new stmts)
index ff9f6a0644625a9084d62f40fba93a3e1062f2b3..66a509dd7444d6f540b5c37450535dac465ee96c 100644 (file)
@@ -384,6 +384,7 @@ QR_next_tuple(QResultClass * self)
    }
    else
    {
+
        /*
         * See if we need to fetch another group of rows. We may be being
         * called from send_query(), and if so, don't send another fetch,
@@ -616,6 +617,7 @@ QR_read_tuple(QResultClass * self, char binary)
        }
        else
        {
+
            /*
             * NO, the field is not null. so get at first the length of
             * the field (four bytes)
index 66687c44efa9fa5f87162c57e34fb48112bf1d6f..a442c85149d0e1ca79141ec1409b226c52ba1918 100644 (file)
@@ -1,60 +1,67 @@
-//{{NO_DEPENDENCIES}}
-// Microsoft Developer Studio generated include file.
+//
+{
+   {
+       NO_DEPENDENCIES
+   }
+}
+
+//Microsoft Developer Studio generated include file.
 // Used by psqlodbc.rc
 //
-#define IDS_BADDSN                      1
-#define IDS_MSGTITLE                    2
-#define DLG_OPTIONS_DRV                 102
-#define DLG_OPTIONS_DS                  103
-#define IDC_DSNAME                      400
-#define IDC_DSNAMETEXT                  401
-#define IDC_DESC                        404
-#define IDC_SERVER                      407
-#define IDC_DATABASE                    408
-#define DLG_CONFIG                      1001
-#define IDC_PORT                        1002
-#define IDC_USER                        1006
-#define IDC_PASSWORD                    1009
-#define DS_READONLY                     1011
-#define DS_SHOWOIDCOLUMN                1012
-#define DS_FAKEOIDINDEX                 1013
-#define DRV_COMMLOG                     1014
-#define IDC_DATASOURCE                  1018
-#define DRV_OPTIMIZER                   1019
-#define DS_CONNSETTINGS                 1020
-#define IDC_DRIVER                      1021
-#define DRV_CONNSETTINGS                1031
-#define DRV_UNIQUEINDEX                 1032
-#define DRV_UNKNOWN_MAX                 1035
-#define DRV_UNKNOWN_DONTKNOW            1036
-#define DRV_READONLY                    1037
-#define IDC_DESCTEXT                    1039
-#define DRV_MSG_LABEL                   1040
-#define DRV_UNKNOWN_LONGEST             1041
-#define DRV_TEXT_LONGVARCHAR            1043
-#define DRV_UNKNOWNS_LONGVARCHAR        1044
-#define DRV_CACHE_SIZE                  1045
-#define DRV_VARCHAR_SIZE                1046
-#define DRV_LONGVARCHAR_SIZE            1047
-#define IDDEFAULTS                      1048
-#define DRV_USEDECLAREFETCH             1049
-#define DRV_BOOLS_CHAR                  1050
-#define DS_SHOWSYSTEMTABLES             1051
-#define DRV_EXTRASYSTABLEPREFIXES       1051
-#define DS_ROWVERSIONING                1052
-#define DRV_PARSE                       1052
-#define DRV_CANCELASFREESTMT            1053
-#define IDC_OPTIONS                     1054
-#define DRV_KSQO                        1055
-#define DS_PG64                         1057
+#define IDS_BADDSN                     1
+#define IDS_MSGTITLE                   2
+#define DLG_OPTIONS_DRV                    102
+#define DLG_OPTIONS_DS                 103
+#define IDC_DSNAME                     400
+#define IDC_DSNAMETEXT                 401
+#define IDC_DESC                       404
+#define IDC_SERVER                     407
+#define IDC_DATABASE                   408
+#define DLG_CONFIG                     1001
+#define IDC_PORT                       1002
+#define IDC_USER                       1006
+#define IDC_PASSWORD                   1009
+#define DS_READONLY                        1011
+#define DS_SHOWOIDCOLUMN               1012
+#define DS_FAKEOIDINDEX                    1013
+#define DRV_COMMLOG                        1014
+#define IDC_DATASOURCE                 1018
+#define DRV_OPTIMIZER                  1019
+#define DS_CONNSETTINGS                    1020
+#define IDC_DRIVER                     1021
+#define DRV_CONNSETTINGS               1031
+#define DRV_UNIQUEINDEX                    1032
+#define DRV_UNKNOWN_MAX                    1035
+#define DRV_UNKNOWN_DONTKNOW           1036
+#define DRV_READONLY                   1037
+#define IDC_DESCTEXT                   1039
+#define DRV_MSG_LABEL                  1040
+#define DRV_UNKNOWN_LONGEST                1041
+#define DRV_TEXT_LONGVARCHAR           1043
+#define DRV_UNKNOWNS_LONGVARCHAR       1044
+#define DRV_CACHE_SIZE                 1045
+#define DRV_VARCHAR_SIZE               1046
+#define DRV_LONGVARCHAR_SIZE           1047
+#define IDDEFAULTS                     1048
+#define DRV_USEDECLAREFETCH                1049
+#define DRV_BOOLS_CHAR                 1050
+#define DS_SHOWSYSTEMTABLES                1051
+#define DRV_EXTRASYSTABLEPREFIXES      1051
+#define DS_ROWVERSIONING               1052
+#define DRV_PARSE                      1052
+#define DRV_CANCELASFREESTMT           1053
+#define IDC_OPTIONS                        1054
+#define DRV_KSQO                       1055
+#define DS_PG64                            1057
 
-// Next default values for new objects
-// 
+//Next default values for new
+   objects
+       //
 #ifdef APSTUDIO_INVOKED
 #ifndef APSTUDIO_READONLY_SYMBOLS
-#define _APS_NEXT_RESOURCE_VALUE        104
-#define _APS_NEXT_COMMAND_VALUE         40001
-#define _APS_NEXT_CONTROL_VALUE         1060
-#define _APS_NEXT_SYMED_VALUE           101
+#define _APS_NEXT_RESOURCE_VALUE       104
+#define _APS_NEXT_COMMAND_VALUE            40001
+#define _APS_NEXT_CONTROL_VALUE            1060
+#define _APS_NEXT_SYMED_VALUE          101
 #endif
 #endif
index 220d563cbce08e282283c63d2b8f46b4d21e1e38..ca9d5c4b2ff710aa2ded3721ca21f81c1408e61a 100644 (file)
@@ -264,6 +264,7 @@ ConfigDlgProc(HWND hdlg,
 
            switch (GET_WM_COMMAND_ID(wParam, lParam))
            {
+
                    /*
                     * Ensure the OK button is enabled only when a data
                     * source name
index d062ba569305a4904b63aff454a7db46f2cd2859..fbd8491e56341ec8d02083c8c334e676c7f2cc29 100644 (file)
@@ -91,7 +91,8 @@ SOCK_Destructor(SocketClass * self)
        free(self->buffer_in);
 
    if (self->buffer_out)
-       free(self->buffer_out);
+       SOCK_put_n_char(self, (char *) &rv, 2);
+   free(self->buffer_out);
 
    free(self);
 }
@@ -256,7 +257,6 @@ SOCK_put_int(SocketClass * self, int value, short len)
    {
        case 2:
            rv = self->reverse ? value : htons((unsigned short) value);
-           SOCK_put_n_char(self, (char *) &rv, 2);
            return;
 
        case 4:
index b473e2d52998c3b069667df604e740b13287c4bb..b2a1eb0ceba8542b0e358678d4de2093ccc8baf7 100644 (file)
@@ -681,6 +681,7 @@ SC_fetch(StatementClass * self)
        if (self->currTuple >= QR_get_num_tuples(res) - 1 ||
            (self->options.maxRows > 0 && self->currTuple == self->options.maxRows - 1))
        {
+
            /*
             * if at the end of the tuples, return "no data found" and set
             * the cursor past the end of the result set
index 7d879c04d12870648299e5b7b11932632a9214b9..519222f051ffae363e5ccd0136721b0e92303202 100644 (file)
@@ -133,6 +133,7 @@ TL_get_fieldval(TupleListClass * self, Int4 tupleno, Int2 fieldno)
    }
    else if (start_is_closer)
    {
+
        /*
         * the shortest way is to start the search from the head of the
         * list
@@ -179,6 +180,7 @@ TL_get_fieldval(TupleListClass * self, Int4 tupleno, Int2 fieldno)
 char
 TL_add_tuple(TupleListClass * self, TupleNode * new_field)
 {
+
    /*
     * we append the tuple at the end of the doubly linked list of the
     * tuples we have already read in
@@ -197,6 +199,7 @@ TL_add_tuple(TupleListClass * self, TupleNode * new_field)
    }
    else
    {
+
        /*
         * there is already an element in the list, so add the new one at
         * the end of the list