AriDEVParser.SQLOutput.PageTextStore.GetCommand C# (CSharp) Method

GetCommand() public method

public GetCommand ( int entry, string pageText, int nextPage ) : string
entry int
pageText string
nextPage int
return string
        public string GetCommand(int entry, string pageText, int nextPage)
        {
            var cmd = new CommandBuilder("page_text");

            cmd.AddColumnValue("entry", entry);
            cmd.AddColumnValue("text", pageText);
            cmd.AddColumnValue("next_page", nextPage);

            return cmd.BuildInsert(true);
        }
PageTextStore