Re: "could not determine data type of parameter" with timestamp

Поиск
Список
Период
Сортировка
От rob stone
Тема Re: "could not determine data type of parameter" with timestamp
Дата
Msg-id 1512505335.4814.5.camel@gmail.com
обсуждение исходный текст
Ответ на "could not determine data type of parameter" with timestamp  (Rémi Aubel <remi.aubel@gmail.com>)
Ответы Re: "could not determine data type of parameter" with timestamp
Список pgsql-jdbc

On Tue, 2017-12-05 at 15:11 +0000, Rémi Aubel wrote:
> Hello,
> 
> 
> 
> The solution given 4 years ago was to explicitly cast the parameter
> as a timestamp (select * from my_table where ?::timestamp is null).
> But this workaround is not really useful for me, because my
> application uses generated (dynamic) queries and targets multiple
> database types (not only PosgreSQL). So, when I know the targeted
> database, I do not know my parameter types anymore.
> 
> Any suggestion?
> 
> Thanks in advance.
> 
> Rémi. 
> 
> 

Hi Rémi,

After creating the Prepared Statement you can do a
ResultSetMetaData.getMetaData() which returns an object containing the
data types of the columns in your select list.
Then for each column in your "where" clause you can obtain its data
type and then do setLong, setString, setTimeStamp or whatever,
according to its type. Then do the "execute" to obtain the actual
result set.

HTH,
Rob 


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Rémi Aubel
Дата:
Сообщение: "could not determine data type of parameter" with timestamp
Следующее
От: Rémi Aubel
Дата:
Сообщение: Re: "could not determine data type of parameter" with timestamp