Ejemplo n.º 1
0
		public FbResolver(FbConnection connection)
		{
			this.connection		= connection;
			this.quotePrefix	= "\"";
			this.quoteSuffix	= "\"";
			this.separator		= ",";
		}
Ejemplo n.º 2
0
		public FbMetaData(FbConnection connection)
		{
			this.connection	= connection;

			this.metadataProps = new Hashtable();

			this.metadataProps.Add(MetaDataProps.MaxColumnsInTable, 32767);
			this.metadataProps.Add(MetaDataProps.MaxObjectNameLength, 31);
			this.metadataProps.Add(MetaDataProps.MaxRowSize, 65535);
			this.metadataProps.Add(MetaDataProps.ObjectQuoteChar, "\"");
			this.metadataProps.Add(MetaDataProps.ObjectQuoteSuffix, "\"");
			this.metadataProps.Add(MetaDataProps.ProcSupportsCursor, true);
			this.metadataProps.Add(MetaDataProps.ProcSupportsCursors, false);
			this.metadataProps.Add(MetaDataProps.QuoteObjects, false);
		}
Ejemplo n.º 3
0
		public FbSQLSchemaCreate(FbConnection connection)
		{
			this.connection = connection;
			this.dbName     = "firebird";
		}
Ejemplo n.º 4
0
		public FbCommand(FbConnection connection)
		{
			this.connection	= connection;
		}