Lines Matching refs:aValue

799 	::rtl::OUString aValue;  in allProceduresAreCallable()
800 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_ACCESSIBLE_PROCEDURES,aValue,*this,m_pConnec… in allProceduresAreCallable()
801 return aValue.toChar() == 'Y'; in allProceduresAreCallable()
806 ::rtl::OUString aValue; in supportsStoredProcedures()
807 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_PROCEDURES,aValue,*this,m_pConnection->getTe… in supportsStoredProcedures()
808 return aValue.toChar() == 'Y'; in supportsStoredProcedures()
820 ::rtl::OUString aValue; in allTablesAreSelectable()
821 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_ACCESSIBLE_TABLES,aValue,*this,m_pConnection… in allTablesAreSelectable()
822 return aValue.toChar() == 'Y'; in allTablesAreSelectable()
860 ::rtl::OUString aValue; in supportsColumnAliasing()
861 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_COLUMN_ALIAS,aValue,*this,m_pConnection->get… in supportsColumnAliasing()
862 return aValue.toChar() == 'Y'; in supportsColumnAliasing()
1030 ::rtl::OUString aValue; in supportsExpressionsInOrderBy()
1031 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_EXPRESSIONS_IN_ORDERBY,aValue,*this,m_pConne… in supportsExpressionsInOrderBy()
1032 return aValue.toChar() == 'Y'; in supportsExpressionsInOrderBy()
1058 ::rtl::OUString aValue; in supportsMultipleTransactions()
1059 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_MULTIPLE_ACTIVE_TXN,aValue,*this,m_pConnecti… in supportsMultipleTransactions()
1060 return aValue.toChar() == 'Y'; in supportsMultipleTransactions()
1065 ::rtl::OUString aValue; in supportsMultipleResultSets()
1066 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_MULT_RESULT_SETS,aValue,*this,m_pConnection-… in supportsMultipleResultSets()
1067 return aValue.toChar() == 'Y'; in supportsMultipleResultSets()
1072 ::rtl::OUString aValue; in supportsLikeEscapeClause()
1073 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_LIKE_ESCAPE_CLAUSE,aValue,*this,m_pConnectio… in supportsLikeEscapeClause()
1074 return aValue.toChar() == 'Y'; in supportsLikeEscapeClause()
1079 ::rtl::OUString aValue; in supportsOrderByUnrelated()
1080 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_ORDER_BY_COLUMNS_IN_SELECT,aValue,*this,m_pC… in supportsOrderByUnrelated()
1081 return aValue.toChar() == 'N'; in supportsOrderByUnrelated()
1214 ::rtl::OUString aValue; in getURLImpl()
1215 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DATA_SOURCE_NAME,aValue,*this,m_pConnection-… in getURLImpl()
1216 return aValue; in getURLImpl()
1221 ::rtl::OUString aValue = m_pConnection->getURL(); in getURL()
1222 if ( !aValue.getLength() ) in getURL()
1224 aValue = ::rtl::OUString::createFromAscii("sdbc:odbc:"); in getURL()
1225 aValue += getURLImpl(); in getURL()
1227 return aValue; in getURL()
1232 ::rtl::OUString aValue; in getUserName()
1233 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_USER_NAME,aValue,*this,m_pConnection->getTex… in getUserName()
1234 return aValue; in getUserName()
1239 ::rtl::OUString aValue; in getDriverName()
1240 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DRIVER_NAME,aValue,*this,m_pConnection->getT… in getDriverName()
1241 return aValue; in getDriverName()
1246 ::rtl::OUString aValue; in getDriverVersion()
1247 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DRIVER_ODBC_VER,aValue,*this,m_pConnection->… in getDriverVersion()
1248 return aValue; in getDriverVersion()
1253 ::rtl::OUString aValue; in getDatabaseProductVersion()
1254 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DRIVER_VER,aValue,*this,m_pConnection->getTe… in getDatabaseProductVersion()
1255 return aValue; in getDatabaseProductVersion()
1260 ::rtl::OUString aValue; in getDatabaseProductName()
1261 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DBMS_NAME,aValue,*this,m_pConnection->getTex… in getDatabaseProductName()
1262 return aValue; in getDatabaseProductName()
1267 ::rtl::OUString aValue; in getProcedureTerm()
1268 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_PROCEDURE_TERM,aValue,*this,m_pConnection->g… in getProcedureTerm()
1269 return aValue; in getProcedureTerm()
1274 ::rtl::OUString aValue; in getSchemaTerm()
1275 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_SCHEMA_TERM,aValue,*this,m_pConnection->getT… in getSchemaTerm()
1276 return aValue; in getSchemaTerm()
1281 ::rtl::OUString aValue; in getDriverMajorVersion()
1282 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DRIVER_VER,aValue,*this,m_pConnection->getTe… in getDriverMajorVersion()
1283 return aValue.copy(0,aValue.indexOf('.')).toInt32(); in getDriverMajorVersion()
1295 ::rtl::OUString aValue; in getDriverMinorVersion()
1296 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_DRIVER_VER,aValue,*this,m_pConnection->getTe… in getDriverMinorVersion()
1297 return aValue.copy(0,aValue.lastIndexOf('.')).toInt32(); in getDriverMinorVersion()
1302 ::rtl::OUString aValue; in getSQLKeywords()
1303 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_KEYWORDS,aValue,*this,m_pConnection->getText… in getSQLKeywords()
1304 return aValue; in getSQLKeywords()
1309 ::rtl::OUString aValue; in getSearchStringEscape()
1310 …OTools::GetInfo(m_pConnection,m_aConnectionHandle,SQL_SEARCH_PATTERN_ESCAPE,aValue,*this,m_pConnec… in getSearchStringEscape()
1311 return aValue; in getSearchStringEscape()
1317 ::rtl::OUStringBuffer aValue; in getStringFunctions()
1320 aValue.appendAscii("ASCII,"); in getStringFunctions()
1322 aValue.appendAscii("BIT_LENGTH,"); in getStringFunctions()
1324 aValue.appendAscii("CHAR,"); in getStringFunctions()
1326 aValue.appendAscii("CHAR_LENGTH,"); in getStringFunctions()
1328 aValue.appendAscii("CHARACTER_LENGTH,"); in getStringFunctions()
1330 aValue.appendAscii("CONCAT,"); in getStringFunctions()
1332 aValue.appendAscii("DIFFERENCE,"); in getStringFunctions()
1334 aValue.appendAscii("INSERT,"); in getStringFunctions()
1336 aValue.appendAscii("LCASE,"); in getStringFunctions()
1338 aValue.appendAscii("LEFT,"); in getStringFunctions()
1340 aValue.appendAscii("LENGTH,"); in getStringFunctions()
1342 aValue.appendAscii("LOCATE,"); in getStringFunctions()
1344 aValue.appendAscii("LOCATE_2,"); in getStringFunctions()
1346 aValue.appendAscii("LTRIM,"); in getStringFunctions()
1348 aValue.appendAscii("OCTET_LENGTH,"); in getStringFunctions()
1350 aValue.appendAscii("POSITION,"); in getStringFunctions()
1352 aValue.appendAscii("REPEAT,"); in getStringFunctions()
1354 aValue.appendAscii("REPLACE,"); in getStringFunctions()
1356 aValue.appendAscii("RIGHT,"); in getStringFunctions()
1358 aValue.appendAscii("RTRIM,"); in getStringFunctions()
1360 aValue.appendAscii("SOUNDEX,"); in getStringFunctions()
1362 aValue.appendAscii("SPACE,"); in getStringFunctions()
1364 aValue.appendAscii("SUBSTRING,"); in getStringFunctions()
1366 aValue.appendAscii("UCASE,"); in getStringFunctions()
1369 if ( aValue.getLength() ) in getStringFunctions()
1370 aValue.setLength(aValue.getLength()-1); in getStringFunctions()
1372 return aValue.makeStringAndClear(); in getStringFunctions()
1378 ::rtl::OUStringBuffer aValue; in getTimeDateFunctions()
1382 aValue.appendAscii("CURRENT_DATE,"); in getTimeDateFunctions()
1384 aValue.appendAscii("CURRENT_TIME,"); in getTimeDateFunctions()
1386 aValue.appendAscii("CURRENT_TIMESTAMP,"); in getTimeDateFunctions()
1388 aValue.appendAscii("CURDATE,"); in getTimeDateFunctions()
1390 aValue.appendAscii("CURTIME,"); in getTimeDateFunctions()
1392 aValue.appendAscii("DAYNAME,"); in getTimeDateFunctions()
1394 aValue.appendAscii("DAYOFMONTH,"); in getTimeDateFunctions()
1396 aValue.appendAscii("DAYOFWEEK,"); in getTimeDateFunctions()
1398 aValue.appendAscii("DAYOFYEAR,"); in getTimeDateFunctions()
1400 aValue.appendAscii("EXTRACT,"); in getTimeDateFunctions()
1402 aValue.appendAscii("HOUR,"); in getTimeDateFunctions()
1404 aValue.appendAscii("MINUTE,"); in getTimeDateFunctions()
1406 aValue.appendAscii("MONTH,"); in getTimeDateFunctions()
1408 aValue.appendAscii("MONTHNAME,"); in getTimeDateFunctions()
1410 aValue.appendAscii("NOW,"); in getTimeDateFunctions()
1412 aValue.appendAscii("QUARTER,"); in getTimeDateFunctions()
1414 aValue.appendAscii("SECOND,"); in getTimeDateFunctions()
1416 aValue.appendAscii("TIMESTAMPADD,"); in getTimeDateFunctions()
1418 aValue.appendAscii("TIMESTAMPDIFF,"); in getTimeDateFunctions()
1420 aValue.appendAscii("WEEK,"); in getTimeDateFunctions()
1422 aValue.appendAscii("YEAR,"); in getTimeDateFunctions()
1424 if ( aValue.getLength() ) in getTimeDateFunctions()
1425 aValue.setLength(aValue.getLength()-1); in getTimeDateFunctions()
1427 return aValue.makeStringAndClear(); in getTimeDateFunctions()
1433 ::rtl::OUStringBuffer aValue; in getSystemFunctions()
1437 aValue.appendAscii("DBNAME,"); in getSystemFunctions()
1439 aValue.appendAscii("IFNULL,"); in getSystemFunctions()
1441 aValue.appendAscii("USERNAME,"); in getSystemFunctions()
1443 if ( aValue.getLength() ) in getSystemFunctions()
1444 aValue.setLength(aValue.getLength()-1); in getSystemFunctions()
1446 return aValue.makeStringAndClear(); in getSystemFunctions()
1452 ::rtl::OUStringBuffer aValue; in getNumericFunctions()
1456 aValue.appendAscii("ABS,"); in getNumericFunctions()
1458 aValue.appendAscii("ACOS,"); in getNumericFunctions()
1460 aValue.appendAscii("ASIN,"); in getNumericFunctions()
1462 aValue.appendAscii("ATAN,"); in getNumericFunctions()
1464 aValue.appendAscii("ATAN2,"); in getNumericFunctions()
1466 aValue.appendAscii("CEILING,"); in getNumericFunctions()
1468 aValue.appendAscii("COS,"); in getNumericFunctions()
1470 aValue.appendAscii("COT,"); in getNumericFunctions()
1472 aValue.appendAscii("DEGREES,"); in getNumericFunctions()
1474 aValue.appendAscii("EXP,"); in getNumericFunctions()
1476 aValue.appendAscii("FLOOR,"); in getNumericFunctions()
1478 aValue.appendAscii("LOGF,"); in getNumericFunctions()
1480 aValue.appendAscii("LOG10,"); in getNumericFunctions()
1482 aValue.appendAscii("MOD,"); in getNumericFunctions()
1484 aValue.appendAscii("PI,"); in getNumericFunctions()
1486 aValue.appendAscii("POWER,"); in getNumericFunctions()
1488 aValue.appendAscii("RADIANS,"); in getNumericFunctions()
1490 aValue.appendAscii("RAND,"); in getNumericFunctions()
1492 aValue.appendAscii("ROUND,"); in getNumericFunctions()
1494 aValue.appendAscii("SIGN,"); in getNumericFunctions()
1496 aValue.appendAscii("SIN,"); in getNumericFunctions()
1498 aValue.appendAscii("SQRT,"); in getNumericFunctions()
1500 aValue.appendAscii("TAN,"); in getNumericFunctions()
1502 aValue.appendAscii("TRUNCATE,"); in getNumericFunctions()
1504 if ( aValue.getLength() ) in getNumericFunctions()
1505 aValue.setLength(aValue.getLength()-1); in getNumericFunctions()
1507 return aValue.makeStringAndClear(); in getNumericFunctions()