Scalien.Table.RenameTable C# (CSharp) Method

RenameTable() public method

Rename the table.
public RenameTable ( string newName ) : void
newName string The new name of the table.
return void
        public virtual void RenameTable(string newName)
        {
            int status = scaliendb_client.SDBP_RenameTable(client.cptr, tableID, newName);
            client.CheckResultStatus(status);
        }