~mysql-clr-team/connectornet/5.1

« back to all changes in this revision

Viewing changes to Driver/Source/SchemaProvider.cs

  • Committer: rburnett
  • Date: 2008-07-25 20:05:01 UTC
  • Revision ID: svn-v4:2c9ddd90-d0e4-2748-bbbe-478c86ca91f6:branches/5.1:1353
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
            if (connection.State != ConnectionState.Open)
49
49
                throw new MySqlException("GetSchema can only be called on an open connection.");
50
50
 
51
 
            collection = collection.ToLower(CultureInfo.CurrentCulture);
 
51
            collection = collection.ToLower(CultureInfo.InvariantCulture);
52
52
 
53
53
            DataTable dt = GetSchemaInternal(collection, restrictions);
54
54