Search Results for

    Show / Hide Table of Contents

    Working with Barcode Validation

    In this code sample we will show how to validate a barcode with Python and Sql.

    Samples

    Python

    class BarcodeValidationSample: 
    
        def validate(self, barcode): 
    
            if '12345' in barcode: 
                return True 
    
            return False  
    

    SQL-Statement

    Select 1 from dummy where ? like '12345%' 
    

    • Improve this Doc
    In This Article
    Back to top Copyright © 2018 SIMPLIC GmbH
    Generated by DocFx