From: <car...@us...> - 2006-04-11 14:59:29
|
Revision: 91 Author: carlosga_fb Date: 2006-04-11 07:59:22 -0700 (Tue, 11 Apr 2006) ViewCVS: http://svn.sourceforge.net/pgsqlclient/?rev=91&view=rev Log Message: ----------- ?\194?\183 Database Schema Fixes Modified Paths: -------------- trunk/PostgreSqlClient/source/PostgreSql/Data/Schema/PgColumns.cs Modified: trunk/PostgreSqlClient/source/PostgreSql/Data/Schema/PgColumns.cs =================================================================== --- trunk/PostgreSqlClient/source/PostgreSql/Data/Schema/PgColumns.cs 2006-04-11 14:56:02 UTC (rev 90) +++ trunk/PostgreSqlClient/source/PostgreSql/Data/Schema/PgColumns.cs 2006-04-11 14:59:22 UTC (rev 91) @@ -59,7 +59,7 @@ { where += " and "; } - where += String.Format(" and table_catalog = '{0}'", restrictions[0]); + where += String.Format("table_catalog = '{0}'", restrictions[0]); } // TABLE_SCHEMA @@ -69,7 +69,7 @@ { where += " and "; } - where += String.Format(" and table_schema = '{0}'", restrictions[1]); + where += String.Format("table_schema = '{0}'", restrictions[1]); } // TABLE_NAME @@ -79,7 +79,7 @@ { where += " and "; } - where += String.Format(" and table_name = '{0}'", restrictions[2]); + where += String.Format("table_name = '{0}'", restrictions[2]); } // COLUMN_NAME @@ -89,7 +89,7 @@ { where += " and "; } - where += String.Format(" and column_name = '{0}'", restrictions[3]); + where += String.Format("column_name = '{0}'", restrictions[3]); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |