@@ -151,7 +151,8 @@ abstract class SenderBufferBase implements SenderBuffer {
151151 }
152152
153153 /**
154- * Writes a symbol name and value into the buffer.
154+ * Writes a symbol name and value into the buffer. <br>
155+ * Use it to insert into SYMBOL columns.
155156 *
156157 * @param {string } name - Symbol name.
157158 * @param {unknown } value - Symbol value, toString() is called to extract the actual symbol value from the parameter.
@@ -178,7 +179,8 @@ abstract class SenderBufferBase implements SenderBuffer {
178179 }
179180
180181 /**
181- * Writes a string column with its value into the buffer.
182+ * Writes a string column with its value into the buffer. <br>
183+ * Use it to insert into VARCHAR and STRING columns.
182184 *
183185 * @param {string } name - Column name.
184186 * @param {string } value - Column value, accepts only string values.
@@ -200,7 +202,8 @@ abstract class SenderBufferBase implements SenderBuffer {
200202 }
201203
202204 /**
203- * Writes a boolean column with its value into the buffer.
205+ * Writes a boolean column with its value into the buffer. <br>
206+ * Use it to insert into BOOLEAN columns.
204207 *
205208 * @param {string } name - Column name.
206209 * @param {boolean } value - Column value, accepts only boolean values.
@@ -220,7 +223,8 @@ abstract class SenderBufferBase implements SenderBuffer {
220223 }
221224
222225 /**
223- * Writes a float column with its value into the buffer.
226+ * Writes a 64-bit floating point value into the buffer. <br>
227+ * Use it to insert into DOUBLE or FLOAT database columns.
224228 *
225229 * @param {string } name - Column name.
226230 * @param {number } value - Column value, accepts only number values.
@@ -229,7 +233,8 @@ abstract class SenderBufferBase implements SenderBuffer {
229233 abstract floatColumn ( name : string , value : number ) : SenderBuffer ;
230234
231235 /**
232- * Writes an integer column with its value into the buffer.
236+ * Writes a 64-bit signed integer into the buffer. <br>
237+ * Use it to insert into LONG, INT, SHORT and BYTE columns.
233238 *
234239 * @param {string } name - Column name.
235240 * @param {number } value - Column value, accepts only number values.
@@ -250,7 +255,8 @@ abstract class SenderBufferBase implements SenderBuffer {
250255 }
251256
252257 /**
253- * Writes a timestamp column with its value into the buffer.
258+ * Writes a timestamp column with its value into the buffer. <br>
259+ * Use it to insert into TIMESTAMP columns.
254260 *
255261 * @param {string } name - Column name.
256262 * @param {number | bigint } value - Epoch timestamp, accepts numbers or BigInts.
0 commit comments