123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Data.SqlClient;
- namespace PRSDesktop;
- public class V6Client : IDisposable
- {
- protected SqlConnection? _connection;
- public V6Client()
- {
-
- }
- public bool Connect()
- {
- _connection = new SqlConnection();
- return true;
- }
-
- public void Dispose()
- {
- if (_connection != null)
- {
- _connection.Dispose();
- _connection = null;
- }
- }
- }
|