/* $Id: IDatabaseConnector.cs,v 1.1 2004/11/24 13:57:06 larsbm Exp $
* Copyright (c) 2004 Engine EAR GmbH & Co. KG
* Developed by: Lars Behrmann, lb@engine.de
*/
/*
* Moved from mainsource into plugin dll
*/
using System;
using System.Collections;
namespace SQLToNeo.PlugIn{
/// <summary>
/// Zusammenfassung fr IDabaseConnector.
/// </summary>
public interface IDatabaseConnector
{
bool CreateConnectionString(string db, string user, string password, bool ntauthentication);
bool NTAuthenticationPossible { get; }
ArrayList GetExistingDatabaseNames();
string ConnectionString { get; set; }
}
}
/*
* $Log: IDatabaseConnector.cs,v $
* Revision 1.1 2004/11/24 13:57:06 larsbm
* - new project SQLToNeoPlugIn
* - switched interfaces from mainsource into plug in
*
*/
|