Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Diego Stefanon
Hi ...
 now I'M triing with new version...
...
 then I give response to you !
Ok !! 

- Messaggio originale -
Da: Carlos <[EMAIL PROTECTED]>
A: For users and developers of the Firebird .NET providers 

Inviato: Martedì 23 ottobre 2007, 16:12:47
Oggetto: Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

Hello:

SVN access intructions can be found here:

http://sourceforge.net/svn/?group_id=9028

The .net provider svn module is:

NETProvider/trunk/NETProvider

http://firebird.svn.sourceforge.net/viewvc/firebird/NETProvider/trunk/NETProvider/


-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient: http://www.firebirdsql.org/
XMPP Client: http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider






  ___ 
L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
http://it.docs.yahoo.com/nowyoucan.html-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Firebird-net-provider Digest, Vol 18, Issue 11

2007-10-23 Thread Carlos
Hello:

> hello dean,
>
>  yes,i am running super server on a multi-core/multi-CPU
> machine.my code is as given below:-

I have missed the point with this mail, could you please send a new
one explaining your problem from the beggining, please ??



-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Carlos
Hello:

SVN access intructions can be found here:

http://sourceforge.net/svn/?group_id=9028

The .net provider svn module is:

NETProvider/trunk/NETProvider

http://firebird.svn.sourceforge.net/viewvc/firebird/NETProvider/trunk/NETProvider/


-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Carlos
Hello:


but may be U' intend this one ?? :
>
>
> http://sourceforge.net/project/showfiles.php?group_id=9028&package_id=226496
>
> or what else ?
>

That is the server not the .net provider.



-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog : http://carlosga.wordpress.com/
FirebirdClient : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Firebird-net-provider Digest, Vol 18, Issue 11

2007-10-23 Thread harpal singh
hello dean,

 yes,i am running super server on a multi-core/multi-CPU
machine.my code is as given below:-

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
 Dim ds As New DataSet
ds = SqlHelper.ExecuteDataset(fbsqlcon, CommandType.Text, "select
first 1 fullstr from TBL_50002 order by datadate")
If ds.Tables(0).Rows.Count > 0 Then
insertdata(ds.Tables(0).Rows(0).Item("fullstr"))
End If
Dim fullstr = ds.Tables(0).Rows(0).Item("fullstr")
SqlHelper.ExecuteNonQuery(fbsqlcon, CommandType.Text , "DELETE FROM
TBL_50002 WHERE fullstr = '" & ds.Tables(0).Rows(0).Item("fullstr").ToString()
& "'")
End Sub


Private Sub insertdata(ByVal str As String)
 'Some calculation and insert values into table as-
 Dim param(17) As FbParameter
param(0) = New FbParameter("@DATATYPE", datatype)
param(1) = New FbParameter("@DATADATE", datadate)
param(2) = New FbParameter("@RELFACT", relfact)
param(3) = New FbParameter("@SATELITE", satelite)
param(4) = New FbParameter("@LATITUDE", latitude)
param(5) = New FbParameter("@LONGITUDE", longitude)
param(6) = New FbParameter("@ANGLE", angle)
param(7) = New FbParameter("@SPEED", speed)
param(8) = New FbParameter("@DISTANCE", distance)
param(9) = New FbParameter("@DIRECTION", direction)
param(10) = New FbParameter("@LOC", loc)
param(11) = New FbParameter("@PIXELX", pixelx)
param(12) = New FbParameter("@PIXELY", pixely)
param(13) = New FbParameter("@FULLSTR", fullstr)
param(14) = New FbParameter("@SYSDATE", sysdate)
param(15) = New FbParameter("@ACIGNITION", acignitionStatus)
Dim strd As String = "INSERT INTO " + bbid + "
(datatype,datadate, relfact,satelite, latitude, longitude,
angle,
speed,distance,direction,loc,pixelx,pixely,fullstr,sysdate,acignition)
VALUES
(@DATATYPE,@DATADATE,@RELFACT,@SATELITE,@LATITUDE,@LONGITUDE,@ANGLE,@SPEED,@DISTANCE,@DIRECTION,@LOC,@PIXELX,@PIXELY,@FULLSTR,@SYSDATE,@ACIGNITION)"

SqlHelper.ExecuteNonQuery(fbsqlcon, CommandType.Text, "INSERT
INTO " + bbid + "  (datatype,datadate, relfact,satelite, latitude,
longitude, angle, speed,
distance,direction,loc,pixelx,pixely,fullstr,sysdate,acignition) VALUES
(@DATATYPE,@DATADATE,@RELFACT,@SATELITE,@LATITUDE,@LONGITUDE,@ANGLE,@SPEED,@DISTANCE,@DIRECTION,@LOC,@PIXELX,@PIXELY,@FULLSTR,@SYSDATE,@ACIGNITION)",
param)

   End Sub


On 10/23/07, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
>
> Send Firebird-net-provider mailing list submissions to
> firebird-net-provider@lists.sourceforge.net
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.sourceforge.net/lists/listinfo/firebird-net-provider
> or, via email, send a message with subject or body 'help' to
> [EMAIL PROTECTED]
>
> You can reach the person managing the list at
> [EMAIL PROTECTED]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Firebird-net-provider digest..."
>
>
> Today's Topics:
>
>1. Re: Firebird ADO.Net on x64 (Jiri Cincura)
>2. patches for 64-bit data provider + embedded   (2.1 beta 2)
>   (Dean Harding)
>3. firbird .net provider performance issue (harpal singh)
>4. Re: firbird .net provider performance issue (Dean Harding)
>5. Re: firbird .net provider performance issue (Jiri Cincura)
>6. Re: patches for 64-bit data provider +embedded (2.1 beta 2)
>   (Jiri Cincura)
>7. Re: patches for 64-bit data provider +embedded (2.1 beta 2)
>   (Carlos)
>8. Re: patches for 64-bit data provider +embedded (2.1 beta 2)
>   (Jiri Cincura)
>9. Re: patches for 64-bit data provider +embedded (2.1 beta 2)
>   (Jiri Cincura)
>   10. Re: patches for 64-bit data provider +embedded (2.1 beta 2)
>   (Carlos)
>
>
> --
>
> Message: 1
> Date: Fri, 19 Oct 2007 15:00:44 +0200
> From: "Jiri Cincura" <[EMAIL PROTECTED]>
> Subject: Re: [Firebird-net-provider] Firebird ADO.Net on x64
> To: "For users and developers of the Firebird .NET providers"
> 
> Message-ID:
> <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On 10/19/07, Viatcheslav Valerievitch Vassiliev <[EMAIL PROTECTED]>
> wrote:
> > After setting size of second parameter it throws null reference
> exception:
> >
> > cmd.Parameters.Add("@str_val", FbDbType.VarChar, 20);
> >
> > Provider seems to need some changes to be used with x64, my first test
> was
> > very initial. However it works for some operations - it can create
> database,
> > create table. So hopefully not too much changes are needed.
>
> It's similar problem. I think it's only about few changes in data
> handling between pr

Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Diego Stefanon
Hi !!...
 if you give me the correct url 
because may be there are some mistakes in ref...

I have the 64 embedded net provider standard in the download page
for 64bit pack...

but may be U' intend this one ?? :

 http://sourceforge.net/project/showfiles.php?group_id=9028&package_id=226496

or what else ?

.. ? (*/*) 

- Messaggio originale -
Da: Dean Harding <[EMAIL PROTECTED]>
A: For users and developers of the Firebird .NET providers 

Inviato: Martedì 23 ottobre 2007, 14:54:08
Oggetto: Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

Marfonya wrote:
> yes ,
>  I'm working with it (64bit embedded on vista 64)
> 
>  It work fine butnot at all ...
>  When triing to get values BUUUM ...
>  dbDatareader.Read() or getting with datatable doesn't work at all
>  
>   ??? why ???
>  I have recompiled the net provider in 64bit but nothing !!!
>  I can create db and tables but not query them at all... 
>  mmm worst !!! damn !!

Did you get the latest source code from SVN? It was only committed 
today... :-)

If you're already running the latest from SVN, what is the exception 
you're getting?

Dean.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider






  ___ 
L'email della prossima generazione? Puoi averla con la nuova Yahoo! Mail: 
http://it.docs.yahoo.com/nowyoucan.html-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Dean Harding
Marfonya wrote:
> yes ,
>  I'm working with it (64bit embedded on vista 64)
> 
>  It work fine butnot at all ...
>  When triing to get values BUUUM ...
>  dbDatareader.Read() or getting with datatable doesn't work at all
>  
>   ??? why ???
>  I have recompiled the net provider in 64bit but nothing !!!
>  I can create db and tables but not query them at all... 
>  mmm worst !!! damn !!

Did you get the latest source code from SVN? It was only committed 
today... :-)

If you're already running the latest from SVN, what is the exception 
you're getting?

Dean.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] Embedded on 64 bit ?? almost fine . damn !!

2007-10-23 Thread Marfonya

yes ,
 I'm working with it (64bit embedded on vista 64)

 It work fine butnot at all ...
 When triing to get values BUUUM ...
 dbDatareader.Read() or getting with datatable doesn't work at all
 
  ??? why ???
 I have recompiled the net provider in 64bit but nothing !!!
 I can create db and tables but not query them at all... 
 mmm worst !!! damn !!

 Some precious advice for ME and users ???

 Enyoj it's almost fine !
 
-- 
View this message in context: 
http://www.nabble.com/Embedded-on-64-bitalmost-fine-.-damn-%21%21-tf4676845.html#a13362244
Sent from the firebird-net-provider mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Marfonya

yes ,
 I'm working with it (64bit embedded)

 It work fine butnot at all ...
 When triing to get values BUUUM ... 
 dbDatareader.Read() or getting with datatable doesn't work at all
 
  ??? why ??? 
 I have recompiled the net provider in 64bit but nothing !!! 
 Some precious advice for ME and users ???
 Enyoj it's almost fine !


-- 
View this message in context: 
http://www.nabble.com/patches-for-64-bit-data-provider-%2B-embedded-%282.1-beta-2%29-tf4668285.html#a13361317
Sent from the firebird-net-provider mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Dean Harding
Carlos wrote:
> Hello:
> 
>> Yes. Dean did great work!
> 
> Sure :)

My pleasure :-) I've been using Firebird + .NET provider for a while 
now, so it's nice to be able to contribute back.

Dean.


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] OT: changelog.txt

2007-10-23 Thread Carlos
Hello:

> I've writing about this a few months ago. The history of changelog.txt
> file is gone. We can use SVN previous revisions to find some old
> lines, but I think it's now neccessary (it's really annoying to write
> changes). Waht about use SVN comments to generate this file? Of course
> changes.txt file will be saved.

While we can know the changes done i have no problem on the way we use
to do so XD



-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Carlos
Hello:

> Yes. Dean did great work!

Sure :)


-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Jiri Cincura
On 10/23/07, Carlos <[EMAIL PROTECTED]> wrote:
> Nice :)

Yes. Dean did great work!

-- 
Jiri {x2} Cincura (Microsoft Student Partner)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


[Firebird-net-provider] OT: changelog.txt

2007-10-23 Thread Jiri Cincura
Hi Carlos,

I've writing about this a few months ago. The history of changelog.txt
file is gone. We can use SVN previous revisions to find some old
lines, but I think it's now neccessary (it's really annoying to write
changes). Waht about use SVN comments to generate this file? Of course
changes.txt file will be saved.

What do you think? Or what others think? IMO changelog from SVN can be
maybe more useful, 'cause it's read mainly by developers.

If no, we should find latest complete changelog.txt, fix it, add new
records (I've been not adding it, while it has been broken) and add
latest lines and recommit it.

-- 
Jiri {x2} Cincura (Microsoft Student Partner)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Carlos
Hello:

> OK, I've run tests. No new problems. I've commited this patch to SVN.
> If there's somebody interested in this build, I can send it, just let
> me know.

Nice :)

-- 
Carlos Guzmán Álvarez
Vigo-Spain

Blog: http://carlosga.wordpress.com/
FirebirdClient  : http://www.firebirdsql.org/
XMPP Client : http://code.google.com/p/xmppclient/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider


Re: [Firebird-net-provider] patches for 64-bit data provider + embedded (2.1 beta 2)

2007-10-23 Thread Jiri Cincura
OK, I've run tests. No new problems. I've commited this patch to SVN.
If there's somebody interested in this build, I can send it, just let
me know.

-- 
Jiri {x2} Cincura (Microsoft Student Partner)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
___
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider