@@ -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.
@@ -238,7 +242,8 @@ abstract class SenderBufferBase implements SenderBuffer {
238242 abstract arrayColumn ( name : string , value : unknown [ ] ) : SenderBuffer ;
239243
240244 /**
241- * Writes an integer column with its value into the buffer.
245+ * Writes a 64-bit signed integer into the buffer. <br>
246+ * Use it to insert into LONG, INT, SHORT and BYTE columns.
242247 *
243248 * @param {string } name - Column name.
244249 * @param {number } value - Column value, accepts only number values.
@@ -259,7 +264,8 @@ abstract class SenderBufferBase implements SenderBuffer {
259264 }
260265
261266 /**
262- * Writes a timestamp column with its value into the buffer.
267+ * Writes a timestamp column with its value into the buffer. <br>
268+ * Use it to insert into TIMESTAMP columns.
263269 *
264270 * @param {string } name - Column name.
265271 * @param {number | bigint } value - Epoch timestamp, accepts numbers or BigInts.
0 commit comments