Lines Matching refs:rtl

71 rtl::OUString OFileDriver::getImplementationName_Static(  ) throw(RuntimeException)  in getImplementationName_Static()
73 return rtl::OUString::createFromAscii("com.sun.star.sdbc.driver.file.Driver"); in getImplementationName_Static()
76 Sequence< ::rtl::OUString > OFileDriver::getSupportedServiceNames_Static( ) throw (RuntimeExceptio… in getSupportedServiceNames_Static()
78 Sequence< ::rtl::OUString > aSNS( 2 ); in getSupportedServiceNames_Static()
79 aSNS[0] = ::rtl::OUString::createFromAscii("com.sun.star.sdbc.Driver"); in getSupportedServiceNames_Static()
80 aSNS[1] = ::rtl::OUString::createFromAscii("com.sun.star.sdbcx.Driver"); in getSupportedServiceNames_Static()
85 ::rtl::OUString SAL_CALL OFileDriver::getImplementationName( ) throw(RuntimeException) in getImplementationName()
91 sal_Bool SAL_CALL OFileDriver::supportsService( const ::rtl::OUString& _rServiceName ) throw(Runtim… in supportsService()
93 Sequence< ::rtl::OUString > aSupported(getSupportedServiceNames()); in supportsService()
94 const ::rtl::OUString* pSupported = aSupported.getConstArray(); in supportsService()
95 const ::rtl::OUString* pEnd = pSupported + aSupported.getLength(); in supportsService()
103 Sequence< ::rtl::OUString > SAL_CALL OFileDriver::getSupportedServiceNames( ) throw(RuntimeExcepti… in getSupportedServiceNames()
109 Reference< XConnection > SAL_CALL OFileDriver::connect( const ::rtl::OUString& url, const Sequence<… in connect()
123 sal_Bool SAL_CALL OFileDriver::acceptsURL( const ::rtl::OUString& url ) in acceptsURL()
127 return (!url.compareTo(::rtl::OUString::createFromAscii("sdbc:file:"),10)); in acceptsURL()
130 Sequence< DriverPropertyInfo > SAL_CALL OFileDriver::getPropertyInfo( const ::rtl::OUString& url, c… in getPropertyInfo()
137 Sequence< ::rtl::OUString > aBoolean(2); in getPropertyInfo()
138 aBoolean[0] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0")); in getPropertyInfo()
139 aBoolean[1] = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("1")); in getPropertyInfo()
142 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharSet")) in getPropertyInfo()
143 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("CharSet of the database.")) in getPropertyInfo()
145 ,::rtl::OUString() in getPropertyInfo()
146 ,Sequence< ::rtl::OUString >()) in getPropertyInfo()
149 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Extension")) in getPropertyInfo()
150 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Extension of the file format.")) in getPropertyInfo()
152 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(".*")) in getPropertyInfo()
153 ,Sequence< ::rtl::OUString >()) in getPropertyInfo()
156 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ShowDeleted")) in getPropertyInfo()
157 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Display inactive records.")) in getPropertyInfo()
159 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0")) in getPropertyInfo()
163 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("EnableSQL92Check")) in getPropertyInfo()
164 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Use SQL92 naming constraints.")) in getPropertyInfo()
166 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0")) in getPropertyInfo()
170 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("UseRelativePath")) in getPropertyInfo()
171 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Handle the connection url as relative path.")) in getPropertyInfo()
173 ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0")) in getPropertyInfo()
177 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("URL")) in getPropertyInfo()
178 …,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("The URL of the database document which is used to cr… in getPropertyInfo()
180 ,::rtl::OUString() in getPropertyInfo()
181 ,Sequence< ::rtl::OUString >()) in getPropertyInfo()
187 const ::rtl::OUString sMessage = aResources.getResourceString(STR_URI_SYNTAX_ERROR); in getPropertyInfo()
235 Reference< XTablesSupplier > SAL_CALL OFileDriver::getDataDefinitionByURL( const ::rtl::OUString& u… in getDataDefinitionByURL()
241 const ::rtl::OUString sMessage = aResources.getResourceString(STR_URI_SYNTAX_ERROR); in getDataDefinitionByURL()