Search found 745 matches: null

Return to advanced search

Re: How to use TMysql (xHarbour)?

... the server is working well. function MakeTable( oCon ) local cCmdSql := "CREATE TABLE IF NOT EXISTS TEST ("+; "ROW_ID INTEGER NOT NULL AUTO_INCREMENT COMMENT 'LLAVE',"+; "CODIGO CHAR(5) NOT NULL COMMENT 'CODIGO CLIENTE',"+; "NOMBRE CHAR(30) NOT NULL COMMENT ...
by FranciscoA
Thu Jun 04, 2009 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use TMysql (xHarbour)?
Replies: 11
Views: 2930

Amigos expertos en MySql + xHarbour

... MsgInfo("Tabla CLIENTES NO EXISTE...") endif cCmdSql:= "CREATE TABLE IF NOT EXISTS clientes (" +; "ROW_ID INTEGER NOT NULL AUTO INCREMENT COMMENT 'Llave'," +; "CODIGO DECIMAL(05,0) NOT NULL COMMENT 'Codigo de Cliente'," +; "NOMBRE CHAR(50) NOT NULL ...
by FranciscoA
Thu Jun 04, 2009 6:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Amigos expertos en MySql + xHarbour
Replies: 10
Views: 2008

Re: Mediator / Listbox

... the server is working well. function MakeTable( oCon ) local cCmdSql := "CREATE TABLE IF NOT EXISTS TEST ("+; "ROW_ID INTEGER NOT NULL AUTO_INCREMENT COMMENT 'LLAVE',"+; "CODIGO CHAR(5) NOT NULL COMMENT 'CODIGO CLIENTE',"+; "NOMBRE CHAR(30) NOT NULL COMMENT ...
by FranciscoA
Thu Jun 04, 2009 6:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mediator / Listbox
Replies: 9
Views: 2531

Re: FWH/xHarbour Menus

... { LONG lResult = CallWindowProc( ( FARPROC ) GetProp( hWnd, "__FWTRANS" ), hWnd, uMsg, wParam, lParam ); InvalidateRect( hWnd, NULL, TRUE ); return lResult; } else if( uMsg == WM_PAINT ) { PAINTSTRUCT ps; char text[ 256 ]; RECT rct; HDC hDC = BeginPaint( hWnd, &ps ); HGDIOBJ ...
by E. Bartzokas
Mon May 25, 2009 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH/xHarbour Menus
Replies: 20
Views: 8463

Re: ODBC

... local oodbca xdsn:="inkom" oodbc:=TOdbc():new(xdsn) oOdbc:Create( "Test", { { "Name", "C", 50, 0,"NOT NULL PRIMARY KEY" },; { "phone", "C", 15, 0,"" },; { "age", "C", 3, 0,"" } } ) oodbca:=TdbOdbcDirect():new("SELECT ...
by kajot
Sun May 24, 2009 5:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ODBC
Replies: 9
Views: 4029

Re: wifi

... "initguid.h" #include "connmgr.h" LPWSTR AnsiToWide( LPSTR ); HB_FUNC (GPRSCONNECT) { // By Pawel HANDLE phWebConnection = NULL; DWORD pdwStatus = 0; //Comprobamos si ya estamos conectados. ConnMgrConnectionStatus (phWebConnection, &pdwStatus); if (pdwStatus == CONNMGR_STATUS_CONNECTED) ...
by Otto
Tue May 19, 2009 11:59 am
 
Forum: FiveWin for Pocket PC
Topic: wifi
Replies: 9
Views: 3357

Re: Drawing PNG from Resources !!!

... Windows) ----------------- #ifndef _WINDOWS_ #define _WINDOWS_ #ifndef FALSE #define FALSE 0 #endif #ifndef TRUE #define TRUE 1 #endif #ifndef NULL #define NULL 0 #endif #ifndef SEEK_SET #define SEEK_SET  0 #define SEEK_CUR  1 #define SEEK_END  2 #endif #ifndef _MSC_VER // define portable types ...
by ukoenig
Sat May 16, 2009 8:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drawing PNG from Resources !!!
Replies: 7
Views: 7370

space and diskinfo

... -1, 4); } HB_FUNC (DISKINFO) { BOOL iRet; unsigned __int64 iFreeBytesToCaller, iTotalBytes, iFreeBytes; iRet = GetDiskFreeSpaceEx(NULL, (PULARGE_INTEGER) &iFreeBytesToCaller, (PULARGE_INTEGER) &iTotalBytes, (PULARGE_INTEGER) &iFreeBytes); hb_reta (2); hb_stornl ((ULONG) ...
by Silvio
Wed May 06, 2009 11:10 pm
 
Forum: FiveWin for Pocket PC
Topic: space and diskinfo
Replies: 3
Views: 552

Re: Problem in ADODB.Command

>
If u have any code sample can u kindly share wih me.
>

Please see the post viewtopic.php?f=3&t=15339&hilit=null for code samples
by nageswaragunupudi
Wed May 06, 2009 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem in ADODB.Command
Replies: 20
Views: 3520

Re: Register a .dll

... SHELLEXECUTEINFO shExecInfo; shExecInfo.cbSize = sizeof(SHELLEXECUTEINFO); shExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS; shExecInfo.hwnd = NULL; shExecInfo.lpVerb = _T("runas"); shExecInfo.lpFile = _T("MyAppl.exe"); shExecInfo.lpParameters = _T("-u"); shExecInfo.lpDirectory ...
by ukoenig
Wed May 06, 2009 12:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Register a .dll
Replies: 7
Views: 1869

Re: How to write NULL to a Sql table

At times we need to assign NULL value to a parameter. Some other times we need to skip a parameter, leaving it empty and allowing the server-side procedure / function to substitute the skipped parameter with its default value. Both are ...
by nageswaragunupudi
Sun Apr 26, 2009 7:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 6356

Re: How to write NULL to a Sql table

Rao

Here is the link to the xHarb NG on Google .. you will see the thread I started and the discussions from other interested users with the same problem

http://groups.google.com/group/comp.lan ... our/topics

Rick
by Rick Lipkin
Sun Apr 26, 2009 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 6356

Re: How to write NULL to a Sql table

> Hopefully you will be able to contribute your fix to the xHarb project. > What should I do for this? I posted the fix here. I would like xHarbour team to examine this modification and incorporate if they consider it suitable. I do not know how to bring it to their notice. I would welcome if ...
by nageswaragunupudi
Sun Apr 26, 2009 3:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 6356

Re: How to write NULL to a Sql table

Rao

Just wanted those following this thread to know you modification to WinOle32 workes perfect. Hopefully you will be able to contribute your fix to the xHarb project.

Rick Lipkin
by Rick Lipkin
Sun Apr 26, 2009 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 6356

Re: How to write NULL to a Sql table

The real problem is when we need to pass NULL value to a parameter of a ServerSide procedure or function. For example, this is a function stored on the MSSQL server. CREATE FUNCTION nulltest( @nVar Int )RETURNING IntASBEGINDECLARE @RetVal ...
by nageswaragunupudi
Sun Apr 26, 2009 8:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to write NULL to a Sql table
Replies: 36
Views: 6356
PreviousNext

Return to advanced search