Azavea.NijPredictivePolicing.Common.DB.DataClient.GenerateTableSQLFromFields C# (CSharp) Method

GenerateTableSQLFromFields() public static method

Convenience function to generate SQL to create a table matching the provided fields
public static GenerateTableSQLFromFields ( string tablename, List columns ) : string
tablename string the name for the new table
columns List a collection of FixedWidthField objects
return string
        public static string GenerateTableSQLFromFields(string tablename, List<FixedWidthField> columns)
        {
            return SqliteDataClient.GenerateTableSQLFromFields(tablename, columns);
        }