Java Code Examples for com.mysql.jdbc.jdbc2.optional.MysqlDataSource#getBlobSendChunkSize()
The following examples show how to use
com.mysql.jdbc.jdbc2.optional.MysqlDataSource#getBlobSendChunkSize() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DataSourceRegressionTest.java From r-course with MIT License | 6 votes |
/** * Tests fix for BUG#19169 - ConnectionProperties (and thus some * subclasses) are not serializable, even though some J2EE containers * expect them to be. * * @throws Exception * if the test fails. */ public void testBug19169() throws Exception { MysqlDataSource toSerialize = new MysqlDataSource(); toSerialize.setZeroDateTimeBehavior("convertToNull"); boolean testBooleanFlag = !toSerialize.getAllowLoadLocalInfile(); toSerialize.setAllowLoadLocalInfile(testBooleanFlag); int testIntFlag = toSerialize.getBlobSendChunkSize() + 1; toSerialize.setBlobSendChunkSize(String.valueOf(testIntFlag)); ByteArrayOutputStream bOut = new ByteArrayOutputStream(); ObjectOutputStream objOut = new ObjectOutputStream(bOut); objOut.writeObject(toSerialize); objOut.flush(); ObjectInputStream objIn = new ObjectInputStream(new ByteArrayInputStream(bOut.toByteArray())); MysqlDataSource thawedDs = (MysqlDataSource) objIn.readObject(); assertEquals("convertToNull", thawedDs.getZeroDateTimeBehavior()); assertEquals(testBooleanFlag, thawedDs.getAllowLoadLocalInfile()); assertEquals(testIntFlag, thawedDs.getBlobSendChunkSize()); }
Example 2
Source File: DataSourceRegressionTest.java From Komondor with GNU General Public License v3.0 | 6 votes |
/** * Tests fix for BUG#19169 - ConnectionProperties (and thus some * subclasses) are not serializable, even though some J2EE containers * expect them to be. * * @throws Exception * if the test fails. */ public void testBug19169() throws Exception { MysqlDataSource toSerialize = new MysqlDataSource(); toSerialize.setZeroDateTimeBehavior("convertToNull"); boolean testBooleanFlag = !toSerialize.getAllowLoadLocalInfile(); toSerialize.setAllowLoadLocalInfile(testBooleanFlag); int testIntFlag = toSerialize.getBlobSendChunkSize() + 1; toSerialize.setBlobSendChunkSize(String.valueOf(testIntFlag)); ByteArrayOutputStream bOut = new ByteArrayOutputStream(); ObjectOutputStream objOut = new ObjectOutputStream(bOut); objOut.writeObject(toSerialize); objOut.flush(); ObjectInputStream objIn = new ObjectInputStream(new ByteArrayInputStream(bOut.toByteArray())); MysqlDataSource thawedDs = (MysqlDataSource) objIn.readObject(); assertEquals("convertToNull", thawedDs.getZeroDateTimeBehavior()); assertEquals(testBooleanFlag, thawedDs.getAllowLoadLocalInfile()); assertEquals(testIntFlag, thawedDs.getBlobSendChunkSize()); }