| 2759 | |
| 2760 | |
| 2761 | int API_ROUTINE BLOB_text_load(ISC_QUAD* blob_id, |
| 2762 | FB_API_HANDLE database, |
| 2763 | FB_API_HANDLE transaction, |
| 2764 | const TEXT* file_name) |
| 2765 | { |
| 2766 | /************************************** |
| 2767 | * |
| 2768 | * B L O B _ t e x t _ l o a d |
| 2769 | * |
| 2770 | ************************************** |
| 2771 | * |
| 2772 | * Functional description |
| 2773 | * Load a blob with the contents of a file. |
| 2774 | * This call does CR/LF translation on NT. |
| 2775 | * Return TRUE is successful. |
| 2776 | * |
| 2777 | **************************************/ |
| 2778 | return any_text_load(blob_id, database, transaction, file_name, FB_TRUE); |
| 2779 | } |
| 2780 | |
| 2781 | |
| 2782 | int API_ROUTINE BLOB_load(ISC_QUAD* blob_id, |
nothing calls this directly
no test coverage detected