예제 #1
0
        public SQLiteServerCommand(string commandText, SQLiteServerConnection connection)
        {
            _connection = connection;
            CommandText = commandText;

            // set the connection timeout
            var builder = new SQLiteServerConnectionStringBuilder(connection?.ConnectionString);

            CommandTimeout = builder.DefaultTimeout;
        }