Changeset 8306 for trunk/ippdb/src/ippdb.h
- Timestamp:
- Aug 11, 2006, 5:37:47 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/ippdb/src/ippdb.h (modified) (31 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippdb/src/ippdb.h
r8283 r8306 202 202 ); 203 203 204 /** Insert an array of weatherRow object into a table 205 * 206 * This function constructs and inserts multiple rows based on it's parameters. 207 * 208 * @return true on success 209 */ 210 211 bool weatherInsertObjects( 212 psDB *dbh, ///< Database handle 213 psArray *objects ///< array of weatherRow objects 214 ); 215 204 216 /** Removes the last row from the database and returns it 205 217 * … … 427 439 psDB *dbh, ///< Database handle 428 440 skyp_transparencyRow *object ///< skyp_transparencyRow object 441 ); 442 443 /** Insert an array of skyp_transparencyRow object into a table 444 * 445 * This function constructs and inserts multiple rows based on it's parameters. 446 * 447 * @return true on success 448 */ 449 450 bool skyp_transparencyInsertObjects( 451 psDB *dbh, ///< Database handle 452 psArray *objects ///< array of skyp_transparencyRow objects 429 453 ); 430 454 … … 664 688 ); 665 689 690 /** Insert an array of skyp_absorptionRow object into a table 691 * 692 * This function constructs and inserts multiple rows based on it's parameters. 693 * 694 * @return true on success 695 */ 696 697 bool skyp_absorptionInsertObjects( 698 psDB *dbh, ///< Database handle 699 psArray *objects ///< array of skyp_absorptionRow objects 700 ); 701 666 702 /** Removes the last row from the database and returns it 667 703 * … … 885 921 psDB *dbh, ///< Database handle 886 922 skyp_emissionRow *object ///< skyp_emissionRow object 923 ); 924 925 /** Insert an array of skyp_emissionRow object into a table 926 * 927 * This function constructs and inserts multiple rows based on it's parameters. 928 * 929 * @return true on success 930 */ 931 932 bool skyp_emissionInsertObjects( 933 psDB *dbh, ///< Database handle 934 psArray *objects ///< array of skyp_emissionRow objects 887 935 ); 888 936 … … 1114 1162 ); 1115 1163 1164 /** Insert an array of dimmRow object into a table 1165 * 1166 * This function constructs and inserts multiple rows based on it's parameters. 1167 * 1168 * @return true on success 1169 */ 1170 1171 bool dimmInsertObjects( 1172 psDB *dbh, ///< Database handle 1173 psArray *objects ///< array of dimmRow objects 1174 ); 1175 1116 1176 /** Removes the last row from the database and returns it 1117 1177 * … … 1337 1397 ); 1338 1398 1399 /** Insert an array of skyp_irRow object into a table 1400 * 1401 * This function constructs and inserts multiple rows based on it's parameters. 1402 * 1403 * @return true on success 1404 */ 1405 1406 bool skyp_irInsertObjects( 1407 psDB *dbh, ///< Database handle 1408 psArray *objects ///< array of skyp_irRow objects 1409 ); 1410 1339 1411 /** Removes the last row from the database and returns it 1340 1412 * … … 1550 1622 psDB *dbh, ///< Database handle 1551 1623 domeRow *object ///< domeRow object 1624 ); 1625 1626 /** Insert an array of domeRow object into a table 1627 * 1628 * This function constructs and inserts multiple rows based on it's parameters. 1629 * 1630 * @return true on success 1631 */ 1632 1633 bool domeInsertObjects( 1634 psDB *dbh, ///< Database handle 1635 psArray *objects ///< array of domeRow objects 1552 1636 ); 1553 1637 … … 1771 1855 ); 1772 1856 1857 /** Insert an array of telescopeRow object into a table 1858 * 1859 * This function constructs and inserts multiple rows based on it's parameters. 1860 * 1861 * @return true on success 1862 */ 1863 1864 bool telescopeInsertObjects( 1865 psDB *dbh, ///< Database handle 1866 psArray *objects ///< array of telescopeRow objects 1867 ); 1868 1773 1869 /** Removes the last row from the database and returns it 1774 1870 * … … 1990 2086 ); 1991 2087 2088 /** Insert an array of summitExpRow object into a table 2089 * 2090 * This function constructs and inserts multiple rows based on it's parameters. 2091 * 2092 * @return true on success 2093 */ 2094 2095 bool summitExpInsertObjects( 2096 psDB *dbh, ///< Database handle 2097 psArray *objects ///< array of summitExpRow objects 2098 ); 2099 1992 2100 /** Removes the last row from the database and returns it 1993 2101 * … … 2207 2315 psDB *dbh, ///< Database handle 2208 2316 pzPendingExpRow *object ///< pzPendingExpRow object 2317 ); 2318 2319 /** Insert an array of pzPendingExpRow object into a table 2320 * 2321 * This function constructs and inserts multiple rows based on it's parameters. 2322 * 2323 * @return true on success 2324 */ 2325 2326 bool pzPendingExpInsertObjects( 2327 psDB *dbh, ///< Database handle 2328 psArray *objects ///< array of pzPendingExpRow objects 2209 2329 ); 2210 2330 … … 2432 2552 ); 2433 2553 2554 /** Insert an array of pzPendingImfileRow object into a table 2555 * 2556 * This function constructs and inserts multiple rows based on it's parameters. 2557 * 2558 * @return true on success 2559 */ 2560 2561 bool pzPendingImfileInsertObjects( 2562 psDB *dbh, ///< Database handle 2563 psArray *objects ///< array of pzPendingImfileRow objects 2564 ); 2565 2434 2566 /** Removes the last row from the database and returns it 2435 2567 * … … 2651 2783 ); 2652 2784 2785 /** Insert an array of newExpRow object into a table 2786 * 2787 * This function constructs and inserts multiple rows based on it's parameters. 2788 * 2789 * @return true on success 2790 */ 2791 2792 bool newExpInsertObjects( 2793 psDB *dbh, ///< Database handle 2794 psArray *objects ///< array of newExpRow objects 2795 ); 2796 2653 2797 /** Removes the last row from the database and returns it 2654 2798 * … … 2864 3008 psDB *dbh, ///< Database handle 2865 3009 newImfileRow *object ///< newImfileRow object 3010 ); 3011 3012 /** Insert an array of newImfileRow object into a table 3013 * 3014 * This function constructs and inserts multiple rows based on it's parameters. 3015 * 3016 * @return true on success 3017 */ 3018 3019 bool newImfileInsertObjects( 3020 psDB *dbh, ///< Database handle 3021 psArray *objects ///< array of newImfileRow objects 2866 3022 ); 2867 3023 … … 3133 3289 ); 3134 3290 3291 /** Insert an array of rawDetrendExpRow object into a table 3292 * 3293 * This function constructs and inserts multiple rows based on it's parameters. 3294 * 3295 * @return true on success 3296 */ 3297 3298 bool rawDetrendExpInsertObjects( 3299 psDB *dbh, ///< Database handle 3300 psArray *objects ///< array of rawDetrendExpRow objects 3301 ); 3302 3135 3303 /** Removes the last row from the database and returns it 3136 3304 * … … 3400 3568 ); 3401 3569 3570 /** Insert an array of rawScienceExpRow object into a table 3571 * 3572 * This function constructs and inserts multiple rows based on it's parameters. 3573 * 3574 * @return true on success 3575 */ 3576 3577 bool rawScienceExpInsertObjects( 3578 psDB *dbh, ///< Database handle 3579 psArray *objects ///< array of rawScienceExpRow objects 3580 ); 3581 3402 3582 /** Removes the last row from the database and returns it 3403 3583 * … … 3663 3843 ); 3664 3844 3845 /** Insert an array of rawImfileRow object into a table 3846 * 3847 * This function constructs and inserts multiple rows based on it's parameters. 3848 * 3849 * @return true on success 3850 */ 3851 3852 bool rawImfileInsertObjects( 3853 psDB *dbh, ///< Database handle 3854 psArray *objects ///< array of rawImfileRow objects 3855 ); 3856 3665 3857 /** Removes the last row from the database and returns it 3666 3858 * … … 3872 4064 psDB *dbh, ///< Database handle 3873 4065 p1PendingExpRow *object ///< p1PendingExpRow object 4066 ); 4067 4068 /** Insert an array of p1PendingExpRow object into a table 4069 * 4070 * This function constructs and inserts multiple rows based on it's parameters. 4071 * 4072 * @return true on success 4073 */ 4074 4075 bool p1PendingExpInsertObjects( 4076 psDB *dbh, ///< Database handle 4077 psArray *objects ///< array of p1PendingExpRow objects 3874 4078 ); 3875 4079 … … 4087 4291 psDB *dbh, ///< Database handle 4088 4292 p2PendingExpRow *object ///< p2PendingExpRow object 4293 ); 4294 4295 /** Insert an array of p2PendingExpRow object into a table 4296 * 4297 * This function constructs and inserts multiple rows based on it's parameters. 4298 * 4299 * @return true on success 4300 */ 4301 4302 bool p2PendingExpInsertObjects( 4303 psDB *dbh, ///< Database handle 4304 psArray *objects ///< array of p2PendingExpRow objects 4089 4305 ); 4090 4306 … … 4312 4528 ); 4313 4529 4530 /** Insert an array of p2PendingImfileRow object into a table 4531 * 4532 * This function constructs and inserts multiple rows based on it's parameters. 4533 * 4534 * @return true on success 4535 */ 4536 4537 bool p2PendingImfileInsertObjects( 4538 psDB *dbh, ///< Database handle 4539 psArray *objects ///< array of p2PendingImfileRow objects 4540 ); 4541 4314 4542 /** Removes the last row from the database and returns it 4315 4543 * … … 4525 4753 psDB *dbh, ///< Database handle 4526 4754 p2DoneExpRow *object ///< p2DoneExpRow object 4755 ); 4756 4757 /** Insert an array of p2DoneExpRow object into a table 4758 * 4759 * This function constructs and inserts multiple rows based on it's parameters. 4760 * 4761 * @return true on success 4762 */ 4763 4764 bool p2DoneExpInsertObjects( 4765 psDB *dbh, ///< Database handle 4766 psArray *objects ///< array of p2DoneExpRow objects 4527 4767 ); 4528 4768 … … 4750 4990 ); 4751 4991 4992 /** Insert an array of p2DoneImfileRow object into a table 4993 * 4994 * This function constructs and inserts multiple rows based on it's parameters. 4995 * 4996 * @return true on success 4997 */ 4998 4999 bool p2DoneImfileInsertObjects( 5000 psDB *dbh, ///< Database handle 5001 psArray *objects ///< array of p2DoneImfileRow objects 5002 ); 5003 4752 5004 /** Removes the last row from the database and returns it 4753 5005 * … … 4965 5217 ); 4966 5218 5219 /** Insert an array of p3PendingExpRow object into a table 5220 * 5221 * This function constructs and inserts multiple rows based on it's parameters. 5222 * 5223 * @return true on success 5224 */ 5225 5226 bool p3PendingExpInsertObjects( 5227 psDB *dbh, ///< Database handle 5228 psArray *objects ///< array of p3PendingExpRow objects 5229 ); 5230 4967 5231 /** Removes the last row from the database and returns it 4968 5232 * … … 5170 5434 psDB *dbh, ///< Database handle 5171 5435 detRunRow *object ///< detRunRow object 5436 ); 5437 5438 /** Insert an array of detRunRow object into a table 5439 * 5440 * This function constructs and inserts multiple rows based on it's parameters. 5441 * 5442 * @return true on success 5443 */ 5444 5445 bool detRunInsertObjects( 5446 psDB *dbh, ///< Database handle 5447 psArray *objects ///< array of detRunRow objects 5172 5448 ); 5173 5449 … … 5391 5667 ); 5392 5668 5669 /** Insert an array of detInputExpRow object into a table 5670 * 5671 * This function constructs and inserts multiple rows based on it's parameters. 5672 * 5673 * @return true on success 5674 */ 5675 5676 bool detInputExpInsertObjects( 5677 psDB *dbh, ///< Database handle 5678 psArray *objects ///< array of detInputExpRow objects 5679 ); 5680 5393 5681 /** Removes the last row from the database and returns it 5394 5682 * … … 5610 5898 ); 5611 5899 5900 /** Insert an array of detProcessedImfileRow object into a table 5901 * 5902 * This function constructs and inserts multiple rows based on it's parameters. 5903 * 5904 * @return true on success 5905 */ 5906 5907 bool detProcessedImfileInsertObjects( 5908 psDB *dbh, ///< Database handle 5909 psArray *objects ///< array of detProcessedImfileRow objects 5910 ); 5911 5612 5912 /** Removes the last row from the database and returns it 5613 5913 * … … 5829 6129 ); 5830 6130 6131 /** Insert an array of detStackedImfileRow object into a table 6132 * 6133 * This function constructs and inserts multiple rows based on it's parameters. 6134 * 6135 * @return true on success 6136 */ 6137 6138 bool detStackedImfileInsertObjects( 6139 psDB *dbh, ///< Database handle 6140 psArray *objects ///< array of detStackedImfileRow objects 6141 ); 6142 5831 6143 /** Removes the last row from the database and returns it 5832 6144 * … … 6048 6360 ); 6049 6361 6362 /** Insert an array of detNormalizedImfileRow object into a table 6363 * 6364 * This function constructs and inserts multiple rows based on it's parameters. 6365 * 6366 * @return true on success 6367 */ 6368 6369 bool detNormalizedImfileInsertObjects( 6370 psDB *dbh, ///< Database handle 6371 psArray *objects ///< array of detNormalizedImfileRow objects 6372 ); 6373 6050 6374 /** Removes the last row from the database and returns it 6051 6375 * … … 6257 6581 psDB *dbh, ///< Database handle 6258 6582 detMasterFrameRow *object ///< detMasterFrameRow object 6583 ); 6584 6585 /** Insert an array of detMasterFrameRow object into a table 6586 * 6587 * This function constructs and inserts multiple rows based on it's parameters. 6588 * 6589 * @return true on success 6590 */ 6591 6592 bool detMasterFrameInsertObjects( 6593 psDB *dbh, ///< Database handle 6594 psArray *objects ///< array of detMasterFrameRow objects 6259 6595 ); 6260 6596 … … 6472 6808 psDB *dbh, ///< Database handle 6473 6809 detMasterImfileRow *object ///< detMasterImfileRow object 6810 ); 6811 6812 /** Insert an array of detMasterImfileRow object into a table 6813 * 6814 * This function constructs and inserts multiple rows based on it's parameters. 6815 * 6816 * @return true on success 6817 */ 6818 6819 bool detMasterImfileInsertObjects( 6820 psDB *dbh, ///< Database handle 6821 psArray *objects ///< array of detMasterImfileRow objects 6474 6822 ); 6475 6823 … … 6705 7053 ); 6706 7054 7055 /** Insert an array of detResidImfileAnalysisRow object into a table 7056 * 7057 * This function constructs and inserts multiple rows based on it's parameters. 7058 * 7059 * @return true on success 7060 */ 7061 7062 bool detResidImfileAnalysisInsertObjects( 7063 psDB *dbh, ///< Database handle 7064 psArray *objects ///< array of detResidImfileAnalysisRow objects 7065 ); 7066 6707 7067 /** Removes the last row from the database and returns it 6708 7068 * … … 6928 7288 ); 6929 7289 7290 /** Insert an array of detResidExpAnalysisRow object into a table 7291 * 7292 * This function constructs and inserts multiple rows based on it's parameters. 7293 * 7294 * @return true on success 7295 */ 7296 7297 bool detResidExpAnalysisInsertObjects( 7298 psDB *dbh, ///< Database handle 7299 psArray *objects ///< array of detResidExpAnalysisRow objects 7300 ); 7301 6930 7302 /** Removes the last row from the database and returns it 6931 7303 *
Note:
See TracChangeset
for help on using the changeset viewer.
