Lines Matching defs:stmnt
101 SQLHSTMT stmnt;
166 if (((odbc_db_t *) (dbi->dbconn))->stmnt != NULL) {
169 (dbi->dbconn))->stmnt);
170 ((odbc_db_t *) (dbi->dbconn))->stmnt = NULL;
195 if (((odbc_db_t *) (odbc_inst->db->dbconn))->stmnt != NULL) {
197 ((odbc_db_t *) (odbc_inst->db->dbconn))->stmnt);
198 ((odbc_db_t *) (odbc_inst->db->dbconn))->stmnt = NULL;
252 if (ndb->stmnt != NULL) {
253 SQLFreeHandle(SQL_HANDLE_STMT, ndb->stmnt);
254 ndb->stmnt = NULL;
292 sqlRes = SQLAllocHandle(SQL_HANDLE_STMT, ndb->dbc, &(ndb->stmnt));
310 if (ndb->stmnt != NULL) {
311 SQLFreeHandle(SQL_HANDLE_STMT, ndb->stmnt);
312 ndb->stmnt = NULL;
667 sqlRes = SQLExecDirect(((odbc_db_t *) dbi->dbconn)->stmnt,
674 SQLCloseCursor(((odbc_db_t *) dbi->dbconn)->stmnt);
735 odbc_getField(SQLHSTMT *stmnt, SQLSMALLINT field, char **data) {
741 if (sqlOK(SQLColAttribute(stmnt, field, SQL_DESC_DISPLAY_SIZE,
745 if (sqlOK(SQLGetData(stmnt, field, SQL_C_CHAR,
762 odbc_getManyFields(SQLHSTMT *stmnt, SQLSMALLINT startField,
777 if (sqlOK(SQLColAttribute(stmnt, i, SQL_DESC_DISPLAY_SIZE,
796 if (sqlOK(SQLGetData(stmnt, i, SQL_C_CHAR, &(data[j]),
833 SQLHSTMT *stmnt;
842 stmnt = ((odbc_db_t *) (dbi->dbconn))->stmnt;
845 if (!sqlOK(SQLNumResultCols(stmnt, &fields))) {
856 while (sqlOK(SQLFetch(stmnt))) {
869 if ((result = odbc_getField(stmnt, 1,
881 if ((result = odbc_getField(stmnt, 1,
883 (result = odbc_getField(stmnt, 2,
895 if ((result = odbc_getField(stmnt, 1, &ttl_s))
897 (result = odbc_getField(stmnt, 2, &type))
899 (result = odbc_getManyFields(stmnt, 3,
947 SQLCloseCursor(((odbc_db_t *) (dbi->dbconn))->stmnt);
981 !sqlOK(SQLFetch(((odbc_db_t *) (dbi->dbconn))->stmnt))) {
987 SQLCloseCursor(((odbc_db_t *) (dbi->dbconn))->stmnt);
1033 !sqlOK(SQLFetch(((odbc_db_t *) (dbi->dbconn))->stmnt))) {
1039 SQLCloseCursor(((odbc_db_t *) (dbi->dbconn))->stmnt);
1065 SQLHSTMT *stmnt;
1092 stmnt = ((odbc_db_t *) (dbi->dbconn))->stmnt;
1095 if (!sqlOK(SQLNumResultCols(stmnt, &fields))) {
1115 while (sqlOK(SQLFetch(stmnt))) {
1124 if ((result = odbc_getField(stmnt, 1,
1126 (result = odbc_getField(stmnt, 2,
1128 (result = odbc_getField(stmnt, 3,
1130 (result = odbc_getManyFields(stmnt, 4, fields,
1174 SQLCloseCursor(((odbc_db_t *) (dbi->dbconn))->stmnt);