Changeset 3567
- Timestamp:
- Mar 30, 2005, 1:07:45 PM (21 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 edited
-
astronomy/psDB.c (modified) (3 diffs)
-
dataIO/psDB.c (modified) (3 diffs)
-
db/psDB.c (modified) (3 diffs)
-
fileUtils/psDB.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psDB.c
r3563 r3567 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-03-30 2 1:12:21$14 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-03-30 23:07:45 $ 16 16 * 17 17 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 374 374 psU64 rowCount; // number of rows in db result set 375 375 psU64 fieldCount; // number of fields in db result set 376 psU64*fieldLength; // field sizes377 psU64len; // field length376 long *fieldLength; // field sizes 377 long len; // field length 378 378 psArray *resultSet; // return array 379 379 int i; // field index … … 428 428 md = psMetadataAlloc(); 429 429 430 fieldLength = (psU64 *)mysql_fetch_lengths(result);430 fieldLength = mysql_fetch_lengths(result); 431 431 432 432 for (i = 0; i < fieldCount; i++) { -
trunk/psLib/src/dataIO/psDB.c
r3563 r3567 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-03-30 2 1:12:21$14 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-03-30 23:07:45 $ 16 16 * 17 17 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 374 374 psU64 rowCount; // number of rows in db result set 375 375 psU64 fieldCount; // number of fields in db result set 376 psU64*fieldLength; // field sizes377 psU64len; // field length376 long *fieldLength; // field sizes 377 long len; // field length 378 378 psArray *resultSet; // return array 379 379 int i; // field index … … 428 428 md = psMetadataAlloc(); 429 429 430 fieldLength = (psU64 *)mysql_fetch_lengths(result);430 fieldLength = mysql_fetch_lengths(result); 431 431 432 432 for (i = 0; i < fieldCount; i++) { -
trunk/psLib/src/db/psDB.c
r3563 r3567 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-03-30 2 1:12:21$14 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-03-30 23:07:45 $ 16 16 * 17 17 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 374 374 psU64 rowCount; // number of rows in db result set 375 375 psU64 fieldCount; // number of fields in db result set 376 psU64*fieldLength; // field sizes377 psU64len; // field length376 long *fieldLength; // field sizes 377 long len; // field length 378 378 psArray *resultSet; // return array 379 379 int i; // field index … … 428 428 md = psMetadataAlloc(); 429 429 430 fieldLength = (psU64 *)mysql_fetch_lengths(result);430 fieldLength = mysql_fetch_lengths(result); 431 431 432 432 for (i = 0; i < fieldCount; i++) { -
trunk/psLib/src/fileUtils/psDB.c
r3563 r3567 12 12 * @author Joshua Hoblitt 13 13 * 14 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-03-30 2 1:12:21$14 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-03-30 23:07:45 $ 16 16 * 17 17 * Copyright 2005 Joshua Hoblitt, University of Hawaii … … 374 374 psU64 rowCount; // number of rows in db result set 375 375 psU64 fieldCount; // number of fields in db result set 376 psU64*fieldLength; // field sizes377 psU64len; // field length376 long *fieldLength; // field sizes 377 long len; // field length 378 378 psArray *resultSet; // return array 379 379 int i; // field index … … 428 428 md = psMetadataAlloc(); 429 429 430 fieldLength = (psU64 *)mysql_fetch_lengths(result);430 fieldLength = mysql_fetch_lengths(result); 431 431 432 432 for (i = 0; i < fieldCount; i++) {
Note:
See TracChangeset
for help on using the changeset viewer.
