Skip to content

Commit 7fc08ac

Browse files
author
Umed Khudoiberdiev
committed
added mariadb driver
1 parent 3180d13 commit 7fc08ac

21 files changed

+1025
-41
lines changed

config/parameters.json

+14
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@
1414
"password": "admin",
1515
"database": "test2"
1616
},
17+
"mariadb": {
18+
"host": "192.168.99.100",
19+
"port": 3307,
20+
"username": "root",
21+
"password": "admin",
22+
"database": "test"
23+
},
24+
"mariadbSecondary": {
25+
"host": "192.168.99.100",
26+
"port": 3307,
27+
"username": "root",
28+
"password": "admin",
29+
"database": "test2"
30+
},
1731
"postgres": {
1832
"host": "192.168.99.100",
1933
"port": 5432,

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"gulp-tslint": "^6.0.2",
4242
"gulp-typescript": "^2.13.6",
4343
"gulpclass": "0.1.1",
44+
"mariasql": "^0.2.6",
4445
"mocha": "^3.0.1",
4546
"mysql": "^2.11.1",
4647
"pg": "^6.0.3",

src/connection/ConnectionManager.ts

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {MissingDriverError} from "./error/MissingDriverError";
88
import {PostgresDriver} from "../driver/postgres/PostgresDriver";
99
import {AlreadyHasActiveConnectionError} from "./error/AlreadyHasActiveConnectionError";
1010
import {Logger} from "../logger/Logger";
11+
import {MariaDbDriver} from "../driver/mariadb/MariaDbDriver";
1112

1213
/**
1314
* Connection manager holds all connections made to the databases and providers helper management functions
@@ -117,6 +118,8 @@ export class ConnectionManager {
117118
return new MysqlDriver(options, logger);
118119
case "postgres":
119120
return new PostgresDriver(options, logger);
121+
case "mariadb":
122+
return new MariaDbDriver(options, logger);
120123
default:
121124
throw new MissingDriverError(options.type);
122125
}

src/driver/Driver.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {DriverOptions} from "./DriverOptions";
22
import {QueryRunner} from "./QueryRunner";
33
import {ColumnMetadata} from "../metadata/ColumnMetadata";
44
import {ObjectLiteral} from "../common/ObjectLiteral";
5+
import {ColumnType} from "../metadata/types/ColumnTypes";
56

67
/**
78
* Driver organizes TypeORM communication with specific database management system.
@@ -62,8 +63,14 @@ export interface Driver {
6263
preparePersistentValue(value: any, column: ColumnMetadata): any;
6364

6465
/**
65-
* Prepares given value to a value to be hydrated, based on its column type and metadata.
66+
* Prepares given value to a value to be persisted, based on its column metadata.
67+
*/
68+
prepareHydratedValue(value: any, type: ColumnType): any;
69+
70+
/**
71+
* Prepares given value to a value to be persisted, based on its column type.
6672
*/
6773
prepareHydratedValue(value: any, column: ColumnMetadata): any;
6874

75+
6976
}

src/driver/DriverOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface DriverOptions {
66
/**
77
* Database type. Mysql and postgres are the only drivers supported at this moment.
88
*/
9-
readonly type: "mysql"|"postgres";
9+
readonly type: "mysql"|"postgres"|"mariadb";
1010

1111
/**
1212
* Url to where perform connection.

src/driver/QueryRunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export interface QueryRunner {
5555
/**
5656
* Inserts a new row into given table.
5757
*/
58-
insert(tableName: string, valuesMap: Object, idColumnName?: string): Promise<any>;
58+
insert(tableName: string, valuesMap: Object, idColumn?: ColumnMetadata): Promise<any>;
5959

6060
/**
6161
* Performs a simple DELETE query by a given conditions in a given table.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
* Thrown if database driver does not support pooling.
3+
*
4+
* @internal
5+
*/
6+
export class DriverPoolingNotSupportedError extends Error {
7+
name = "DriverPoolingNotSupportedError";
8+
9+
constructor(driverName: string) {
10+
super();
11+
this.message = `Connection pooling is not supported by (${driverName}) driver.`;
12+
}
13+
14+
}

0 commit comments

Comments
 (0)