@simplysm/orm-node 13.0.100 → 14.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,9 +2,9 @@ import { EventEmitter } from "@simplysm/core-common";
2
2
  import type { ColumnMeta, IsolationLevel } from "@simplysm/orm-common";
3
3
  import { type DbConn, type MssqlDbConnConfig } from "../types/db-conn";
4
4
  /**
5
- * MSSQL database connection class
5
+ * MSSQL 데이터베이스 연결 클래스
6
6
  *
7
- * Manages MSSQL/Azure SQL connections using the tedious library.
7
+ * tedious 라이브러리를 사용하여 MSSQL/Azure SQL 연결을 관리한다.
8
8
  */
9
9
  export declare class MssqlDbConn extends EventEmitter<{
10
10
  close: void;
@@ -34,10 +34,10 @@ export declare class MssqlDbConn extends EventEmitter<{
34
34
  private _convertColumnMetaToTediousBulkColumnDef;
35
35
  private _convertDataTypeToTediousBulkColumnType;
36
36
  /**
37
- * Infer the type of a value and return Tedious data type
37
+ * 값의 타입을 추론하여 Tedious 데이터 타입을 반환한다
38
38
  *
39
- * @param value - Value whose type is to be inferred (error if null/undefined is passed)
40
- * @throws Error if null/undefined is passed
39
+ * @param value - 타입을 추론할 (null/undefined 전달 시 오류 발생)
40
+ * @throws null/undefined 전달 시 오류
41
41
  */
42
42
  private _guessTediousType;
43
43
  }