search for: _connection

Displaying 9 results from an estimated 9 matches for "_connection".

Did you mean: connection
2006 Aug 13
1
establish_connection method
I''m digging into rails source code. But I''ve got a problem in undestading actionrecord::base source code which is connection_specification.rb. In the body of establish_connection method, def self.establish_connection(spec = nil) case spec when nil raise AdapterNotSpecified unless defined? RAILS_ENV establish_connection(RAILS_ENV) when ConnectionSpecification clear_active_connection_name @active_connection_na...
2000 Jan 07
1
Problems with the 2.0.6 release ....
...ients). After the upgrade we get a lot of errors like these: >>>>>>>>>>>>>>>>>> Log <<<<<<<<<<<<<<<<<<< Jan 4 16:18:35 fissio smbd[31799]: [2000/01/04 16:18:35, 0] smbd/service.c:make _connection(535) Jan 4 16:18:35 fissio smbd[31799]: c6s302pc74 (147.83.148.102) connect to ser vice e6689080 as user e6689080 (uid=3909, gid=105) (pid 31799) Jan 4 16:18:35 samba_server smbd[31799]: [2000/01/04 16:18:35, 0] lib/util_sec.c:asse rt_uid(54) Jan 4 16:18:35 samba_server smbd[31799]: Failed...
2020 Oct 09
0
Wine release 5.19
...lenames instead of Unix stat information for font files. gdi32: Store face data as a single binary value in the registry cache. Alistair Leslie-Hughes (6): xactengine3_7: Explicity copy the XACT_RUNTIME_PARAMETERS members. include: Add more SCARD defines. msado15: Implement _Connection Get/Put Provider. msado15: Implement _Connection get/put Mode. msado15: Implement _Connection get/put CursorLocation. msado15: Implement _Command get/putref ActiveConnection. Andrew Eikum (8): audioclient.idl: Declare IAudioClient2. mmdevapi: Stub implement IAudioClie...
2020 Jun 05
0
Wine release 5.10
...rilogy) fails to start on Steam ---------------------------------------------------------------- Changes since 5.9: Aaro Altonen (5): msado15: Implement _Command get/put CommandType. msado15: Implement _Command get/put CommandText. msado15: Add IConnectionPointContainer stub to _Connection. msado15: Add IConnectionPoint stub to _Connection. msado15: Implement IConnectionPointContainer_FindConnectionPoint. Akihiro Sagawa (2): gdi32: Handle vertical faces in the fontconfig fallback. gdi32: Add a vertical font replacement if it's a DBCS font. Alex Henrie (1...
2019 Dec 13
0
Wine release 5.0-rc1
...r import kernel32. Alistair Leslie-Hughes (9): odbccp32: Implement SQLConfigDataSource/W. wineqtdecoder: Fix some copy-paste errors. loader: Install msado15.dll into the correct location. msado15: Support all interfaces in _Recordset QueryInterface. msado15: Implement _Connection_get_State. msado15: Implement _Connection_get_CommandTimeout and _Connection_put_CommandTimeout. oledb32: Implement IDataSourceLocator PromptNew. msado15: Add ISupportErrorInfo support to _Connection. msado15: Add _Command stub interface. Anastasios Simeonidis (3): nt...
2018 Mar 02
3
Problemas de conexion con base de datso
...on base de datso Estimado Jes?s Para Fern?ndez Pruebe realizar algo desde cero solo con el fin de comprobar la respuesta, algo gen?rico como puede ser: cn <- odbcDriverConnect(connection="Driver={SQL Server Native Client 11.0};server=localhost;database=AdventureWorksDW2012;trusted_connection=yes;") dataFetchEUR <- sqlFetch(cn, 'vResellerSalesAmountEUR', colnames=FALSE, rows_at_time=1000) Reemplace lo menos posible, si falla posiblemente hay un mensaje de error con alguna pista. Javier Rub?n Marcuzzi El 2 de marzo de 2018, 11:19, Jes?s Para Fern?ndez <j.pa...
2020 Oct 23
0
Wine release 5.20
...etype.c. gdi32: Don't bother caching the font type. makefiles: Explicitly create destination dirs when installing symlinks. Alistair Leslie-Hughes (5): xactengine3_7: Initial IXACT3Engine tests. sapi: Return a default token in ISpVoice::GetVoice msado15: Implement _Connection Open. server: Fix compile error when irda.h is available. msado15: Implement _Recordset get/put CursorType. Anton Baskanov (1): amstream: Implement SSUPDATE_CONTINUOUS flag in IDirectDrawStreamSample::Update. Arkadiusz Hiler (1): user32: Implement GetMouseMovePointsEx()....
2020 Feb 02
0
Wine release 5.1
...nter. include: Add directmanipulation.idl. include: Add _Inout_updates_bytes_opt_ define. include: Add remaining DBPROPSET_* GUID's. include: Add enum DBPROPFLAGSENUM. msado15: Implement _Recordset get_CursorLocation and put_CursorLocation. msado15: Implement _Connection get/put ConnectionString. d3dx9/tests: Add some tests for ID3DXFont_DrawText(). include: Add xact3wb.h. Andrew Eikum (6): winebus.sys: Don't return too early if SDL initialization succeeds. dinput: Fix V/A/FSlider dwOfs values in c_dfDIJoystick2. dinput: Add missi...
2006 Jul 24
7
[PATCH] Support for DB Clusters/Replication in ActiveRecord (RFC)
...Base class ConnectionSpecification #:nodoc: attr_reader :config, :adapter_method - def initialize (config, adapter_method) + def initialize (config, adapter_method = nil) + # If no adapter is found, try to devine it from the config. + # This was moved here from establish_connection since it''s now + # useful in other places. + if adapter_method.nil? + config = config.symbolize_keys + unless config.key?(:adapter) then raise AdapterNotSpecified, "database configuration does not specify adapter" end + adapter_method = "#{co...