ebf16fa660f3db7afb0e1fbaf3f02852c8e6587f markd Tue Sep 6 12:10:49 2016 -0700 internal documention fixes diff --git src/hg/inc/jksql.h src/hg/inc/jksql.h index cb7242f..20b60da 100644 --- src/hg/inc/jksql.h +++ src/hg/inc/jksql.h @@ -393,31 +393,31 @@ * will then return a NULL row. */ char* sqlFieldName(struct sqlResult *sr); /* Repeated calls to this function returns the names of the fields * the given result. */ struct slName *sqlResultFieldList(struct sqlResult *sr); /* Return slName list of all fields in query. Can just be done once per query. */ int sqlResultFieldArray(struct sqlResult *sr, char ***retArray); /* Get the fields of sqlResult, returning count, and the results * themselves in *retArray. */ int sqlFieldColumn(struct sqlResult *sr, char *colName); /* get the column number of the specified field in the result, or - * -1 if the result doesn't contailed the field.*/ + * -1 if the result doesn't contain the field.*/ int sqlTableSize(struct sqlConnection *conn, char *table); /* Find number of rows in table. */ int sqlFieldIndex(struct sqlConnection *conn, char *table, char *field); /* Returns index of field in a row from table, or -1 if it * doesn't exist. */ struct slName *sqlFieldNames(struct sqlConnection *conn, char *table); /* Returns field names from a table. */ unsigned int sqlLastAutoId(struct sqlConnection *conn); /* Return last automatically incremented id inserted into database. */ void sqlVaWarn(struct sqlConnection *sc, char *format, va_list args);