Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 25ca263ee84916e3a9b30f6fcab7ecb0d5624f96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/***************************************************************************
 * Copyright (c) 2004 - 2007 Eike Stepper, Germany.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.net4j.db;

import org.eclipse.net4j.internal.db.DBAdapterRegistry;
import org.eclipse.net4j.util.registry.IRegistry;

import java.sql.Connection;
import java.sql.Driver;
import java.sql.Statement;

/**
 * @author Eike Stepper
 */
public interface IDBAdapter
{
  public static final IRegistry<String, IDBAdapter> REGISTRY = DBAdapterRegistry.INSTANCE;

  public String getName();

  public String getVersion();

  public Driver getJDBCDriver();

  public void createTables(Iterable<? extends IDBTable> tables, Connection connection) throws DBException;

  public void createTable(IDBTable table, Statement statement) throws DBException;

  public String mangleTableName(String name, int attempt);

  public String mangleFieldName(String name, int attempt);
}

Back to the top