From: Nikolai D. <ni...@im...> - 2003-01-09 12:19:00
|
Hello, I downloaded beta1 version of .Net provider and have problem connecting to database. Every time a specify connection string like "Database=C;\acc2.gdb;User=SYSDBA;Password=masterkey" i am getting exception. I looked in source code for ParseConnectionString method and i think there is a bug there which prevent me from connecting This should be "db", not "database" --------------------------------- | | \|/ if(database == null || user == null || password == null || dataSource == null) { returnVal = false; } else { this.dataSource = dataSource; this.port = port; this.database = db; this.user = user; this.password = password; this.charset = charset; this.dialect = dialect; this.role = role; this.pooling = pooling; this.lifetime = lifetime; } -- Best regards, Nikolai mailto:ni...@im... |