Skip to content

Commit d994fec

Browse files
author
Divang Sharma
committedDec 18, 2024·
Added JSON datatype test case

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
 

‎src/main/java/com/microsoft/sqlserver/jdbc/SQLServerDataTable.java

+1
Original file line numberDiff line numberDiff line change
@@ -300,6 +300,7 @@ private void internalAddrow(JDBCType jdbcType, Object val, Object[] rowValues,
300300
case LONGVARCHAR:
301301
case LONGNVARCHAR:
302302
case SQLXML:
303+
case JSON:
303304
if (val instanceof UUID)
304305
val = val.toString();
305306
nValueLen = (2 * ((String) val).length());

‎src/test/java/com/microsoft/sqlserver/jdbc/tvp/TVPTypesTest.java

+30
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,36 @@ public void testXML() throws SQLException {
149149
}
150150
}
151151

152+
/**
153+
* Test JSON support
154+
*
155+
* @throws SQLException
156+
*/
157+
@Test
158+
public void testJSON() throws SQLException {
159+
createTables("json");
160+
createTVPS("json");
161+
value = "{\"severity\":\"TRACE\",\"duration\":200,\"date\":\"2024-12-17T15:45:56\"}";
162+
163+
tvp = new SQLServerDataTable();
164+
tvp.addColumnMetadata("c1", microsoft.sql.Types.JSON);
165+
tvp.addRow(value);
166+
167+
try (SQLServerPreparedStatement pstmt = (SQLServerPreparedStatement) connection.prepareStatement(
168+
"INSERT INTO " + AbstractSQLGenerator.escapeIdentifier(tableName) + " select * from ? ;")) {
169+
pstmt.setStructured(1, tvpName, tvp);
170+
171+
pstmt.execute();
172+
173+
try (Connection con = getConnection(); Statement stmt = con.createStatement();
174+
ResultSet rs = stmt.executeQuery(
175+
"select c1 from " + AbstractSQLGenerator.escapeIdentifier(tableName) + " ORDER BY rowId")) {
176+
while (rs.next())
177+
assertEquals(rs.getString(1), value);
178+
}
179+
}
180+
}
181+
152182
/**
153183
* Test ntext support
154184
*

0 commit comments

Comments
 (0)
Please sign in to comment.