| 2780 | |
| 2781 | |
| 2782 | int API_ROUTINE BLOB_load(ISC_QUAD* blob_id, |
| 2783 | FB_API_HANDLE database, |
| 2784 | FB_API_HANDLE transaction, |
| 2785 | const TEXT* file_name) |
| 2786 | { |
| 2787 | /************************************** |
| 2788 | * |
| 2789 | * B L O B _ l o a d |
| 2790 | * |
| 2791 | ************************************** |
| 2792 | * |
| 2793 | * Functional description |
| 2794 | * Load a blob with the contents of a file. Return TRUE is successful. |
| 2795 | * |
| 2796 | **************************************/ |
| 2797 | return any_text_load(blob_id, database, transaction, file_name, FB_FALSE); |
| 2798 | } |
| 2799 | |
| 2800 | |
| 2801 | FB_BLOB_STREAM API_ROUTINE Bopen(ISC_QUAD* blob_id, |
nothing calls this directly
no test coverage detected