similar to: prepared query with RODBC ?

Displaying 20 results from an estimated 100 matches similar to: "prepared query with RODBC ?"

2004 Jul 20
5
Precision in R
Greetings. I'm trying to recreate in R some regression models I've done in SAS, but I'm not getting the same results. My advisor suspects this may be due to differences in precision between R and SAS. Does anyone know where I can find specifications for R's type double? (It doesn't seem to be in the R Language Definition.) Thanks in advance for any help anyone can
2008 Jun 23
2
Writing Vector to a File
Dear experts, I try not to trouble the list again after this question. I want to print this vector into a file > myvec [1] --Control --Control --Control --Control --Control HBA2 HBA1 [8] HBA1 --Control HBB --Control HBB HBA1 MBP [15] --Control HBA1 HBA2 HBB PTGDS GAPDH UBC [22] --Control GAPDH TPT1 HUWE1 PRM1 CKM
2009 Feb 26
2
When ODBC native support in wine?
Hello, first , I would like to thank you for your great work with wine. When will be possible I fine implementation of ODBC support in wine? the actual with MDAC25 /27/28 are not very fine and a lot of people have a lot of problem .... where are a very high application number that need this feature for run proporty. Thanks a lot
2010 Dec 16
1
use parted to create "raw paration"????
we have CENTOS 5.5 on X86. I tried to create a "raw partition" (NOT FS) on a disk and it continue to show "ext3". How can I get ride of it? === procedures===== # parted /dev/sde GNU Parted 1.8.1 Using /dev/sde Welcome to GNU Parted! Type 'help' to view a list of commands. (parted) p Model: DELL PERC
2010 Mar 10
1
Importing Access 2007 data with ROBC
Hi all, I'm trying to import Microsoft Access data into R. It looks like I'm supposed to use the ROBC package, and this works fine with old Access files (those with an .mdb extension). However, lovely Microsoft must constantly update their software. Modern Access files have an .ACCDB extension. I cannot seem to coerce R to import data from such a file. Any advice? I've been using
2008 Sep 18
1
"xxx_id may not be null" when saving many to many joined objects
Hi, I have two model classes; Tune and Title and they are joined in a many to many relationship through a Variation class. Here''s some stub code of the models: class Tune < ActiveRecord::Base has_many :variations, :dependent => :destroy has_many :titles, :through => :variations ... class Title < ActiveRecord::Base has_many :variations, :dependent => :destroy
2009 Jun 24
3
Missing php* packages
Hello, I am trying to migrate one of our fedora-based servers to CentOS. Our PHP developers doesn't allow us to switch because there are no crucial (for them) php packages: php-smarty php-adodb php-accelerator It is not acceptable for us to download sources and compile them and repeat the process each time there is a security bug. Can you recommend any repository which will deliver all the
2008 Jul 01
2
Wine+ADODB+PostgreSQL
I'm trying to write VB6 code to get data from a PostgreSQL server running on Fedora 7 Linux. Running the code in Win XP there is no problem, but when I try running under Wine on the linux server itself I get no rows returned from my database even though the logs show I'm connected and PostgreSQL has located the data I requested. I'm using an ADODB connection with a DSN. However the
2004 Dec 17
2
question about Webtraffic monitoring
Does anyone know a good open source and free webmonitoring software which I can use to monitor some websites and build simple uptime/downtine statistics for my customers (conform SLA's) ? Any help/hitns would be very apperciated :) -- Michiel
2004 Nov 22
1
wiki down ?
im getting: Fatal error: Unknown function: mssql_get_last_message() in /var/www/html/tikiwiki-1.8.2/lib/adodb/drivers/adodb-mssql.inc.php on line 415 to the wiki.. Jason
2005 Jan 24
1
.call file creation
I am curious partly because it has occurred randomly in my asterisk system. How does one go about creating a .call file for placing a call between two extensions/phones? I know this has been mentioned and is probably in one of the wikis somewhere, but I am unsure exactally how to go about doing it. Can anyone point me in the right direction. Dan
2004 Nov 28
17
Wiki down?
Hi All, The wiki seems to be struggling this evening. Anyone else seeing this? Michael -- Michael Graves mgraves@pixelpower.com Sr. Product Specialist www.pixelpower.com Pixel Power Inc. mgraves@mstvp.com o713-861-4005 o800-905-6412 c713-201-1262
2010 Jan 10
2
xmlToDataFrame#Help!!!
I'm struggling with interpreting XML files created by ADODB as data.frames and I'm looking for advice (see attached example file). Note: This file contains a result set which comes from a rectangular data array. I've been trying to play with parameters to the xmlToDataFrame function in the XML package but I dont get it to extract the data frame. This is what the result should look
2013 Feb 19
2
Cramer von Mises test for a discrete distribution
Hi, ? I'm trying to carry out Cramer von Mises tests between pairs of vectors belonging to a discrete distribution (concretely frequencies from 0 to 200). However, the program crashes in the attempt. The problem seems to be that these vectors only have positive integer numbers (+ zero). When I add a random very small positive decimal to the non-decimal part everything works fine (files prm1
2007 Mar 19
2
Visual Basic Applications
Hello everyone, First of all, I apologize for my poor English. I am a beginner with Wine and I am already astonished by the possibilities given by such a software. In fact, I got a VB application that I want to use under my Ubuntu Dapper Distrib. This application is based on the creation of some objects as : - scripting.filesystem - scripting.dictionary - msxml2.serverXMLHTTP -
2016 May 03
9
[Bug 95251] New: vdpau decoder capabilities: not supported
https://bugs.freedesktop.org/show_bug.cgi?id=95251 Bug ID: 95251 Summary: vdpau decoder capabilities: not supported Product: Mesa Version: 11.2 Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau Assignee: nouveau at
2010 Jan 10
1
xmlToDataFrame#Help!!!#follow-up
Dieter Menne pointed out that the (small) xml attachment didn't make it. Here is an in-line version (see end of message). Let's hope it works this time. I'm struggling with interpreting XML files created by ADODB as data.frames and I'm looking for advice. Note: This xlm contains a result set which comes from a rectangular data array. I've been trying to play with
2009 Feb 20
2
OLEDB not work !
Hi everybody I have a program , it work good under window98 / 2000 /xp . It use oledb (client supported by mdac2.7 or later version) direct link MS SQL Server 2000 . with wine it do not work. I set up mdac 2.8 sp1 , no change by google , i found too many program can not work (oledb not support) can anybody help me ?
2008 Jul 20
10
STI and fixtures
Hi all ! Loading fixtures doens''t seems to associate my 2 objects, do know what''s wrong ? In app/ class Manager < Employee has_many :employees, :foreign_key => :reports_to end class Employee < Person belongs_to :manager, :foreign_key => ''reports_to'' end class Person < ActiveRecord::Base belongs_to :address end fixtures for
2003 Jul 23
1
problem w/ php3+php4
Hello, Has anybody experienced any problems with php3+php4 combo in systems newer than 4.6-STABLE (as of June-Aug 2002)? Briefly, the problem looks very similar to what is stated in the following reports: http://groups.google.com/groups?q=%22php3+kills+apache%22&hl=ru&lr=&ie=UTF-8&oe=UTF-8&selm=wqz8yrfzbug.wl%40hurt.theclones.net&rnum=1