Exemplo n.º 1
0
        public void Varchar(int length)
        {
            var type = length == -1 ? "varchar(max)" : $"varchar({length})";

            CreateTable(type, TestTableCreator.GetLongTextSqlValue());
        }
Exemplo n.º 2
0
 public void LongColumn()
 {
     CreateTable("long", TestTableCreator.GetLongTextSqlValue());
 }
Exemplo n.º 3
0
 public void Text()
 {
     CreateTable("text", TestTableCreator.GetLongTextSqlValue());
 }
Exemplo n.º 4
0
 public void Clob()
 {
     CreateTable("clob", TestTableCreator.GetLongTextSqlValue());
 }