| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //
- // System.Data.SqlClient.SqlConnection.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- namespace System.Data.SqlClient
- {
- /// <summary>
- /// Represents an open connection to a SQL data source
- /// </summary>
- public class SqlConnection : IDBConnection
- {
- public SqlTransaction BeginTransaction()
- {
- return new SqlTransaction (this);
- }
- public SqlTransaction BeginTransaction(IsolationLevel il)
- {
- SqlTransaction xaction = new SqlTransaction (cnc);
- xaction.IsolationLevel = il;
-
- return xaction;
- }
- [MonoTODO]
- public void ChangeDatabase(string databaseName)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public void Close()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public SqlCommand CreateCommand()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Open()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public string ConnectionString
- {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public int ConnectionTimeout
- {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Database
- {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public ConnectionState State
- {
- get { throw new NotImplementedException (); }
- }
- }
- }
|