File tree 1 file changed +2
-18
lines changed
1 file changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -194,30 +194,14 @@ component singleton {
194
194
* @dsn The datasource name
195
195
* @username The username to use
196
196
* @password The password to use
197
+ * @deprecated There are no longer any instances where this would be different between engines. Deprecate in 7.x and remove in 8x.
197
198
*/
198
199
public string function getQueryParamDateTimeType (
199
200
required string dsn ,
200
201
username = " " ,
201
202
password = " "
202
203
){
203
- var dbInfo = getDatabaseInfo ( argumentCollection = arguments );
204
- switch ( dbInfo .database_productName ) {
205
- case " PostgreSQL" : {
206
- return " cf_sql_timestamp" ;
207
- }
208
- case " MySQL" : {
209
- return " cf_sql_timestamp" ;
210
- }
211
- case " Microsoft SQL Server" : {
212
- return " cf_sql_datetime" ;
213
- }
214
- case " Oracle" : {
215
- return " cf_sql_timestamp" ;
216
- }
217
- default : {
218
- return " cf_sql_timestamp" ;
219
- }
220
- }
204
+ return " cf_sql_timestamp" ;
221
205
}
222
206
223
207
}
You can’t perform that action at this time.
0 commit comments