从命令行在PervasiveSQL中创建数据库

时间:2017-12-21 19:47:38

标签: pervasive pervasive-sql

如何使用命令行在PervasiveSQL中创建数据库。

我知道如何通过Control Center来实现,但我宁愿通过命令行创建它。我正在努力为我正在开发的项目自动化PervasiveSQL框的站立。我安静地进行了服务器安装,我正在使用RegKey导入来调整服务器配置。

现在我只需要编写数据库的脚本。新数据库将使用已复制到服务器的现有数据库文件。

在我使用的文档found here中:有一个名为dbMaint的实用程序(第264页),它似乎可以完成这项工作,但我似乎没有在我的服务器上安装该工具。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

dbMaint仅适用于Linux上的PSQL。有一种方法可以使用分布式调整接口(DTI)或分布式调整对象(DTO)来编写实用程序来创建数据库。我无法链接到PSQL文档,但PSQL v11文档下载中有一个PSQL_DTI_GUIDE.pdf和PSQL_DTO_Guide.pdf,它描述了如何使用这些API。

找到一个我放在一起的C#样本。需要添加Pervasive DTO库作为参考。这是一个COM对象。简单的样本是:

using System;
using DTOLib;

namespace dtoTest
{
    class Class1
    {
        [STAThread]
        static void Main(string[] args)
        {
            string compName = null;
            string userName = null;
            string password = null;
            string dbname = null;
            string ddflocation = null;
            string datalocation = null;
            dtoDbFlags dbflags = DTOLib.dtoDbFlags.dtoDbFlagDefault;

            DTOLib.dtoResult result;
            if (args.LongLength < 1)
            {
                Console.WriteLine("Invalid options.\n");
                Console.WriteLine("Usage: dtoDBN.EXE <computername> <username> <password> <dbname> <ddf location> <data location> <DBFlage>");
                Console.WriteLine("NOTE: locations must be relative to the computer where the PSQL engine is running.");
                Console.WriteLine("DB Flags must be passed as integer in this example with these values:  ");
                Console.WriteLine(" P_DBFLAG_BOUND =  1;  (* bound database - must have P_DBFLAG_CREATE_DDF too *)");
                Console.WriteLine(" P_DBFLAG_RI = 2; (*relational integrity *)");
                Console.WriteLine(" P_DBFLAG_CREATE_DDF = 4; (*create ddf flag *)");
                Console.WriteLine(" P_DBFLAG_NA = 2147483648; (*not applicable *)");
                Console.WriteLine(" P_DBFLAG_DEFAULT = (P_DBFLAG_BOUND or P_DBFLAG_RI); ");

                return;
            }
            if (args.LongLength == 7)
            {
                compName = args[0].ToString();
                userName = args[1].ToString();
                password = args[2].ToString();
                dbname = args[3].ToString();
                ddflocation = args[4].ToString();
                datalocation = args[5].ToString();
                dbflags = (dtoDbFlags)Convert.ToInt32(args[6]);
            }
            Console.WriteLine("Create Pervasive Database using DTO and C#");
            DtoSession mDtoSession = new DTOLib.DtoSession();
            try
            {
                result = mDtoSession.Connect(compName, userName, password);
                if (result != 0)
                {
                    Console.WriteLine("Error connecting to server.  Error code:");
                }
                else
                {
                    //Create a Database name here.  
                    DtoDatabase db = new DtoDatabase();
                    db.Name = dbname;
                    db.DdfPath = ddflocation;
                    db.DataPath = datalocation;
                    db.Flags = dbflags;
                    result = mDtoSession.Databases.Add(db);
                    if (result !=0)
                    {
                        Console.WriteLine(string.Format("Error creating the datbase ({0}).  Error code: {1}", dbname, result.ToString()));
                    }
                    else
                    {
                        Console.WriteLine(string.Format("Database ({0}) created. ", dbname));

                    }

                    result = mDtoSession.Disconnect();
                    Console.ReadLine();
                }
            }
            catch (Exception e1)
            {
                Console.WriteLine(e1.Message.ToString());
            }
        }
    }
}