Hi all,
What is wrong with this query??
strSQL = "INSERT INTO axisanpr.histimages (Image, Image1, Image2, Image3, ImageName) " _
& " VALUES ('" & "BlaBla" _ 'tmpImage _
& "', '" & "BlaBla" _ 'tmpImage1 _
& "', '" & "BlaBla" _ 'tmpImage2 _
& "', '" & "BlaBla" _ 'tmpImage3 _
& "', '" & "BlaBla" _ ' NewImageName _
& "');"
SQLDBCREATE.BeginTransaction
SQLDBCREATE.ExecNonQuery(strSQL)
SQLDBCREATE.TransactionSuccessful give me a error java.lang.NumberFormatException: For input string: "null"
Image, Image1, Image2, Image3 are LongText fields
ImageName = Varchar(255)
I use JSQL version 1.60
Some help can be nice thanks.
What is wrong with this query??
strSQL = "INSERT INTO axisanpr.histimages (Image, Image1, Image2, Image3, ImageName) " _
& " VALUES ('" & "BlaBla" _ 'tmpImage _
& "', '" & "BlaBla" _ 'tmpImage1 _
& "', '" & "BlaBla" _ 'tmpImage2 _
& "', '" & "BlaBla" _ 'tmpImage3 _
& "', '" & "BlaBla" _ ' NewImageName _
& "');"
SQLDBCREATE.BeginTransaction
SQLDBCREATE.ExecNonQuery(strSQL)
SQLDBCREATE.TransactionSuccessful give me a error java.lang.NumberFormatException: For input string: "null"
Image, Image1, Image2, Image3 are LongText fields
ImageName = Varchar(255)
I use JSQL version 1.60
Some help can be nice thanks.
Last edited: