Skip to content

Commit

Permalink
windows XP compact
Browse files Browse the repository at this point in the history
git-svn-id: https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk@2120 079b0acf-d9fa-0310-9935-e5ade295c882
  • Loading branch information
ayenderahien committed Apr 3, 2009
1 parent 5c2d822 commit 5e984f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Rhino.Queues/Storage/QueueSchemaCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private void CreateMessagesHistoryTable()
cbMax = 8192,
cp = JET_CP.Unicode,
coltyp = JET_coltyp.LongText,
grbit = ColumndefGrbit.ColumnNotNULL
grbit = ColumndefGrbit.None
}, null, 0, out columnid);

Api.JetAddColumn(session, tableid, "data", new JET_COLUMNDEF
Expand Down Expand Up @@ -127,7 +127,7 @@ private void CreateMessagesTable()
cbMax = 8192,
cp = JET_CP.Unicode,
coltyp = JET_coltyp.LongText,
grbit = ColumndefGrbit.ColumnNotNULL
grbit = ColumndefGrbit.None
}, null, 0, out columnid);

Api.JetAddColumn(session, tableid, "data", new JET_COLUMNDEF
Expand Down
4 changes: 2 additions & 2 deletions Rhino.Queues/Storage/SchemaCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void CreateOutgoingHistoryTable(JET_DBID dbid)
cbMax = 8192,
cp = JET_CP.Unicode,
coltyp = JET_coltyp.LongText,
grbit = ColumndefGrbit.ColumnNotNULL
grbit = ColumndefGrbit.None
}, null, 0, out columnid);

Api.JetAddColumn(session, tableid, "data", new JET_COLUMNDEF
Expand Down Expand Up @@ -225,7 +225,7 @@ private void CreateOutgoingTable(JET_DBID dbid)
cbMax = 8192,
cp = JET_CP.Unicode,
coltyp = JET_coltyp.LongText,
grbit = ColumndefGrbit.ColumnNotNULL
grbit = ColumndefGrbit.None
}, null, 0, out columnid);

Api.JetAddColumn(session, tableid, "data", new JET_COLUMNDEF
Expand Down

0 comments on commit 5e984f2

Please sign in to comment.