Search found 255 matches

by GomezL
Wed Jun 07, 2017 3:15 pm
Forum: General Development
Topic: BR SQL performance tweaking
Replies: 5
Views: 15857

Re: BR SQL performance tweaking

Code: Select all

INSERT INTO table2
SELECT * FROM table1
WHERE condition;
by GomezL
Wed Jun 07, 2017 3:14 pm
Forum: General Development
Topic: BR SQL performance tweaking
Replies: 5
Views: 15857

Re: BR SQL performance tweaking

Ther is a balance 1000 is definitely slower then 1, but there is a value that is better. I have a function that I use: 58890 DEF Fn_Get_Max_Insertrecs(F_Handle) 58920 IF Rln(F_Handle)<=200 THEN 58930 LET Max_Insert_Records=40 58940 ELSE IF Rln(F_Handle)<=999 THEN 58950 LET Max_Insert_Records=30 5896...
by GomezL
Tue Jun 06, 2017 7:05 pm
Forum: BR Configuration
Topic: BR issue with Windows Defender or other Anti-virus products?
Replies: 11
Views: 40952

Re: BR issue with Windows Defender or other Anti-virus products?

I expect that the exclude list can be entered, but am not sure (I don't use Defender as my primary protection). https://answers.microsoft.com/en-us/protect/wiki/protect_defender-protect_scanning/how-to-exclude-a-filefolder-from-windows-defender/f32ee18f-a012-4f02-8611-0737570e8eee If you can't you c...
by GomezL
Tue Jun 06, 2017 12:24 pm
Forum: BR Configuration
Topic: BR issue with Windows Defender or other Anti-virus products?
Replies: 11
Views: 40952

Re: BR issue with Windows Defender or other Anti-virus products?

You mentioned that this is tied to Windows Defender. It sounds like a false positive by the security application. Try adding the wbserver.dat to the "Exclude List" in Windows Defender. I also highly recommend going to client server. Since your example showed the "L:" drive, I am ...
by GomezL
Fri Jun 02, 2017 3:20 pm
Forum: General Development
Topic: BR SQL performance tweaking
Replies: 5
Views: 15857

Re: BR SQL performance tweaking

Your results are fairly consistent with what I have found. I generally say that BR can write 100,000 records per second, and this is roughly true for either Write # or Rewrite #. With SQL, Inserts, Updates and Deletes are "Very Slow". There are a few techniques to improve performance 1) us...
by GomezL
Fri Jan 27, 2017 12:58 pm
Forum: Advanced Concepts
Topic: TIMEOUT on HTTP Client
Replies: 5
Views: 15007

Re: TIMEOUT on HTTP Client

err 4145
syserr$ CLIENT SYSTEM ERROR

message from HTTPINFO is:
Curl IEmpty reply from server
Curl IConnection #1 to host **-***-***.******.com left intact
HTTP session terminated due to BR timeout
by GomezL
Fri Jan 27, 2017 9:52 am
Forum: Advanced Concepts
Topic: TIMEOUT on HTTP Client
Replies: 5
Views: 15007

Re: TIMEOUT on HTTP Client

That was the first thing we tried:
* Wait = 9999
* Wait = -1
* Wait = 0
by GomezL
Thu Jan 26, 2017 8:59 am
Forum: Advanced Concepts
Topic: TIMEOUT on HTTP Client
Replies: 5
Views: 15007

TIMEOUT on HTTP Client

I am building an HTTP client to a WEB Service, but the service is taking too long to respond.

Is there a way to tell the HTTP client to wait longer before timing out?
by GomezL
Fri Dec 16, 2016 7:14 am
Forum: General Development
Topic: line drawing with 4.X versions of BR
Replies: 7
Views: 18124

Re: line drawing with 4.X versions of BR

We have played with DrawLine, and attached I have some of the results we came up with.

DrawLine.bmp is what we ended up finding to be our "Best Result".

There are two Drawline_Thim samples.
by GomezL
Sun Oct 16, 2016 5:43 pm
Forum: Advanced Concepts
Topic: Base64
Replies: 4
Views: 13614

Re: Base64

It looks like Windows has a command line tool that might meet your needs: http://stackoverflow.com/questions/16945780/decoding-base64-in-batch To encode a file: certutil -encode inputFileName encodedOutputFileName To decode a file: certutil -decode encodedInputFileName decodedOutputFileName There ar...
by GomezL
Thu Sep 01, 2016 9:42 am
Forum: General Development
Topic: Wiki Down?
Replies: 15
Views: 33432

Re: Wiki Down?

The tool is very nice, but BR also provides error description internall. ERR - BR Error LINE - Program Line BRERR$ - English Description for last BR Error BRERR$(Error) - English Description$ for a specific error. SYSERR$ - English Description for "System Errors" (Secondary Message) --- He...
by GomezL
Fri Aug 26, 2016 4:25 pm
Forum: BR Wiki
Topic: Is the Wiki Down?
Replies: 19
Views: 44763

Re: Is the Wiki Down?

Ignored
by GomezL
Wed Jun 29, 2016 10:40 am
Forum: General Development
Topic: What does "==" mean?
Replies: 5
Views: 14624

Re: What does "==" mean?

Knowing the answer makes it much easier.

I looked up "Boolean", and Assignment Operations was the first result.

I just noticed there is another page that is much more on point

http://brwiki2.brulescorp.com/index.php ... Expression
by GomezL
Tue Jun 28, 2016 3:46 am
Forum: General Development
Topic: What does "==" mean?
Replies: 5
Views: 14624

Re: What does "==" mean?

http://brwiki2.brulescorp.com/index.php?title=Assignment_Operations == is a Boolean expression 1==2 Returns false or 0 1==1 returns true or 1 I sometimes use it in a formula Print (a==100)*100 This example returns 100 only if a=100 Print (a>100)*100 This example returns 100 only if a>100 In the exam...
by GomezL
Thu May 12, 2016 11:32 am
Forum: Printing
Topic: NWP on Label Stock
Replies: 17
Views: 31697

Re: NWP on Label Stock

Opening with "name=WIN:/ZEBRA 2844-Z" will send the print job through the Windows Drivers.

Try using "name=DIRECT:/ZEBRA 2844-Z" this will send the "PCL Code directly to the printer bypassing the windows driver.