I have just download source code .Net Provider 2.5 from SVN, I build
success. I want to create a database with Dialect 3, see following code:

string script = @"SET SQL DIALECT 3;

SET NAMES UNICODE_FSS;

CREATE DATABASE 'G:\Y\PP.TDB'
USER 'SYSDBA' PASSWORD 'masterkey'
PAGE_SIZE 4096
DEFAULT CHARACTER SET UNICODE_FSS;";

            FirebirdSql.Data.Isql.FbScript FbScript = new
FirebirdSql.Data.Isql.FbScript(new System.IO.StringReader(script));
            FbScript.Parse();
            FirebirdSql.Data.Isql.FbBatchExecution FbBatchExecution = new
FirebirdSql.Data.Isql.FbBatchExecution(null, FbScript);
            
            FbBatchExecution.Execute();


An exception thown: Connection String is not initialized.


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to