File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919// COM, set the ComVisible attribute to true on that type.
2020[ assembly: ComVisible ( false ) ]
2121
22- [ assembly: AssemblyVersion ( "0.9.2 .1" ) ]
23- [ assembly: AssemblyFileVersion ( "0.9.2 .1" ) ]
22+ [ assembly: AssemblyVersion ( "0.9.3 .1" ) ]
23+ [ assembly: AssemblyFileVersion ( "0.9.3 .1" ) ]
Original file line number Diff line number Diff line change @@ -119,5 +119,16 @@ public void TestMultiInsertWithDynamicTypeObjects()
119119 Assert . AreEqual ( "tea" , actuals [ 1 ] . Password ) ;
120120 Assert . AreEqual ( 1 , actuals [ 1 ] . Age ) ;
121121 }
122+
123+ [ Test ]
124+ public void InsertBigStringIntoNTextColumn ( )
125+ {
126+ var bigString = new string ( 'X' , 8192 ) ;
127+ var db = Database . Opener . OpenFile ( DatabasePath ) ;
128+ var row = db . TextTest . Insert ( Text : bigString ) ;
129+ Assert . NotNull ( row ) ;
130+ Assert . AreNotEqual ( 0 , row . Id ) ;
131+ Assert . AreEqual ( bigString , row . Text ) ;
132+ }
122133 }
123134}
You can’t perform that action at this time.
0 commit comments