# Connection APIs

# Main API

  • createConnection() - Creates a new connection and registers it in global connection manager. If connection options parameter is omitted then connection options are read from ormconfig file or environment variables.
import {createConnection} from "typeorm";

const connection = await createConnection({
    type: "mysql",
    host: "localhost",
    port: 3306,
    username: "test",
    password: "test",
    database: "test"
});
1
2
3
4
5
6
7
8
9
10
  • createConnections() - Creates multiple connections and registers them in global connection manager. If connection options parameter is omitted then connection options are read from ormconfig file or environment variables.
import {createConnections} from "typeorm";

const connection = await createConnections([{
    name: "connection1",
    type: "mysql",
    host: "localhost",
    port: 3306,
    username: "test",
    password: "test",
    database: "test"
}, {
    name: "connection2",
    type: "mysql",
    host: "localhost",
    port: 3306,
    username: "test",
    password: "test",
    database: "test"
}]);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  • getConnectionManager() - Gets connection manager which stores all created (using createConnection() or createConnections()) connections.
import {getConnectionManager} from "typeorm";

const defaultConnection = getConnectionManager().get("default");
const secondaryConnection = getConnectionManager().get("secondary");
1
2
3
4
  • getConnection() - Gets connection which was created by using createConnection method.
import {getConnection} from "typeorm";

const connection = getConnection();
// if you have named connection you can specify its name:
const secondaryConnection = getConnection("secondary-connection");
1
2
3
4
5
  • getEntityManager() - Gets EntityManager from connection. Connection name can be specified to indicate what connection's entity manager should be taken.
import {getEntityManager} from "typeorm";

const manager = getEntityManager();
// you can use manager methods now

const secondaryManager = getEntityManager("secondary-connection");
// you can use secondary connection manager methods
1
2
3
4
5
6
7
  • getRepository() - Gets Repository for given entity from connection. Connection name can be specified to indicate what connection's entity manager should be taken.
import {getRepository} from "typeorm";

const userRepository = getRepository(User);
// you can use repository methods now

const blogRepository = getRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
1
2
3
4
5
6
7
  • getTreeRepository() - Gets TreeRepository for given entity from connection. Connection name can be specified to indicate what connection's entity manager should be taken.
import {getTreeRepository} from "typeorm";

const userRepository = getTreeRepository(User);
// you can use repository methods now

const blogRepository = getTreeRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
1
2
3
4
5
6
7
  • getMongoRepository() - Gets MongoRepository for given entity from connection. Connection name can be specified to indicate what connection's entity manager should be taken.
import {getMongoRepository} from "typeorm";

const userRepository = getMongoRepository(User);
// you can use repository methods now

const blogRepository = getMongoRepository(Blog, "secondary-connection");
// you can use secondary connection repository methods
1
2
3
4
5
6
7

# Connection API

  • name - Connection name. If you created nameless connection then it's equal to "default". You use this name when you work with multiple connections and call getConnection(connectionName: string)
const connectionName: string = connection.name;
1
  • options - Connection options used to create this connection. Learn more about Connection Options.
const connectionOptions: ConnectionOptions = connection.options;
// you can cast connectionOptions to MysqlConnectionOptions
// or any other xxxConnectionOptions depending on the database driver you use
1
2
3
  • isConnected - Indicates if a real connection to the database is established.
const isConnected: boolean = connection.isConnected;
1
  • driver - Underlying database driver used in this connection.
const driver: Driver = connection.driver;
// you can cast connectionOptions to MysqlDriver
// or any other xxxDriver depending on the database driver you use
1
2
3
const manager: EntityManager = connection.manager;
// you can call manager methods, for example find:
const user = await manager.findOne(1);
1
2
3
  • mongoManager - MongoEntityManager used to work with connection entities in mongodb connections. For more information about MongoEntityManager see MongoDB documentation.
const manager: MongoEntityManager = connection.mongoManager;
// you can call manager or mongodb-manager specific methods, for example find:
const user = await manager.findOne(1);
1
2
3
  • connect - Performs connection to the database. When you use createConnection it automatically calls connect and you don't need to call it yourself.
await connection.connect();
1
  • close - Closes connection with the database. Usually, you call this method when your application is shutting down.
await connection.close();
1
  • synchronize - Synchronizes database schema. When synchronize: true is set in connection options it calls this method. Usually, you call this method when your application is starting.
await connection.synchronize();
1
  • dropDatabase - Drops the database and all its data. Be careful with this method on production since this method will erase all your database tables and their data. Can be used only after connection to the database is established.
await connection.dropDatabase();
1
  • runMigrations - Runs all pending migrations.
await connection.runMigrations();
1
  • undoLastMigration - Reverts last executed migration.
await connection.undoLastMigration();
1
  • hasMetadata - Checks if metadata for a given entity is registered. Learn more about Entity Metadata.
if (connection.hasMetadata(User))
    const userMetadata = connection.getMetadata(User);
1
2
  • getMetadata - Gets EntityMetadata of the given entity. You can also specify a table name and if entity metadata with such table name is found it will be returned. Learn more about Entity Metadata.
const userMetadata = connection.getMetadata(User);
// now you can get any information about User entity
1
2
  • getRepository - Gets Repository of the given entity. You can also specify a table name and if repository for given table is found it will be returned. Learn more about Repositories.
const repository = connection.getRepository(User);
// now you can call repository methods, for example find:
const users = await repository.findOne(1);
1
2
3
  • getTreeRepository - Gets TreeRepository of the given entity. You can also specify a table name and if repository for given table is found it will be returned. Learn more about Repositories.
const repository = connection.getTreeRepository(Category);
// now you can call tree repository methods, for example findTrees:
const categories = await repository.findTrees();
1
2
3
  • getMongoRepository - Gets MongoRepository of the given entity. This repository is used for entities in MongoDB connection. Learn more about MongoDB support.
const repository = connection.getMongoRepository(User);
// now you can call mongodb-specific repository methods, for example createEntityCursor:
const categoryCursor = repository.createEntityCursor();
const category1 = await categoryCursor.next();
const category2 = await categoryCursor.next();
1
2
3
4
5
const userRepository = connection.getCustomRepository(UserRepository);
// now you can call methods inside your custom repository - UserRepository class
const crazyUsers = await userRepository.findCrazyUsers();
1
2
3
  • transaction - Provides a single transaction where multiple database requests will be executed in a single database transaction. Learn more about Transactions.
await connection.transaction(async manager => {
    // NOTE: you must perform all database operations using given manager instance
    // its a special instance of EntityManager working with this transaction
    // and don't forget to await things here
});
1
2
3
4
5
  • query - Executes a raw SQL query.
const rawData = await connection.query(`SELECT * FROM USERS`);
1
  • createQueryBuilder - Creates a query builder, which can be used to build queries. Learn more about QueryBuilder.
const users = await connection.createQueryBuilder()
    .select()
    .from(User, "user")
    .where("user.name = :name", { name: "John" })
    .getMany();
1
2
3
4
5
  • createQueryRunner - Creates a query runner used to manage and work with a single real database connection. Learn more about QueryRunner.
const queryRunner = connection.createQueryRunner();

// you can use its methods only after you call connect
// which performs real database connection
await queryRunner.connect();

// .. now you can work with query runner and call its methods

// very important - don't forget to release query runner once you finished working with it
await queryRunner.release();
1
2
3
4
5
6
7
8
9
10

# ConnectionManager API

  • create - Creates a new connection and register it in the manager.
const connection = connectionManager.create({
    type: "mysql",
    host: "localhost",
    port: 3306,
    username: "test",
    password: "test",
    database: "test"
});
1
2
3
4
5
6
7
8
  • get - Gets already created connection stored in the manager by its name.
const defaultConnection = connectionManager.get("default");
const secondaryConnection = connectionManager.get("secondary");
1
2
  • has - Checks if a connection is registered in the given connection manager.
if (connectionManager.has("default")) {
    // ...
}
1
2
3