search for: sqlchar

Displaying 3 results from an estimated 3 matches for "sqlchar".

Did you mean: salcha
2004 Dec 13
1
R 2.0.1 and RODBC install problem
...ting ./config.status config.status: creating src/Makevars ** libs gcc -I/usr/local/lib/R/include -I/usr/local/include -fPIC -g -O2 -c RODBC.c -o RODBC.o RODBC.c:23:17: sql.h: No such file or directory RODBC.c:24:20: sqlext.h: No such file or directory RODBC.c:44: error: parse error before "SQLCHAR" RODBC.c:44: warning: no semicolon at end of struct or union RODBC.c:45: warning: data definition has no type or storage class RODBC.c:46: error: parse error before "DataType" [... goes on like this for a while, throughtout RODBC.c ...] make: *** [RODBC.o] Error 1 ERROR: compilatio...
2005 Dec 05
0
about php-ODBC , unixODBC, freetds and MSSQL server
...--+---------------------------------------+ SQLRowCount returns 2516 2516 rows fetched SQL> then I look forward in the source files and I found that both clients (php module and isql) use the same function to get the number of rows: from isql.c : static void WriteFooterNormal( SQLHSTMT hStmt, SQLCHAR *szSepLine, SQLLEN nRows ) { SQLLEN nRowsAffected = -1; printf( (char*)szSepLine ); SQLRowCount( hStmt, &nRowsAffected ); printf( "SQLRowCount returns %d\n", nRowsAffected ); if ( nRows ) { printf( "%d rows fetched\n", nRows ); } } from o...
2006 Feb 27
4
prepared query with RODBC ?
Dear List, Would anyone know how to perform prepared queries with ROBC ? I had a shot with some of the internal (non-exported) functions of the package but ended up with a segfault, so I prefer asking around before experimenting further... Thanks, Laurent