On Dec 8, 2008, at 12:10 PM, John Fabiani wrote:
> - tableNameBreak=cursor.Table.split(".", 1)
> - localSchemaName = tableNameBreak[0]
> + try:
> + localSchemaName, localTableName = tableName.split(".",
> 1)
> + except ValueError:
> + raise ValueError("Please use schema-qualified
> datasource names "
> "(e.g. 'public.%s')" % tableName)
> localTableName = tableNameBreak[1]
Where is tableNameBreak defined in this new version?
-- Ed Leafe
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]