Sponsored Content
Full Discussion: ASN.1 Decoder UNIX Code
Top Forums Programming ASN.1 Decoder UNIX Code Post 302888632 by teefa on Sunday 16th of February 2014 08:04:40 AM
Old 02-16-2014
thanks alot , but if this code is in a file named code.c , how will i use it
i got a schema and binary.air file
shall i gcc -o code.sh code.c
then code.sh binary schema > output

kindly tell me if you dont understand what i want
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

core file decoder needed

All, Remotely logged in to the UNIX server (HP B1000 Visual Server) (Version HP-UX 10.20) by using the program Xapplauncher. This is a application runs under Exceed. (Exceed "version 6.1" is a Windows application to communicate with UNIX servers) With no pre warnings the application was... (2 Replies)
Discussion started by: pbekker
2 Replies

2. Programming

ASN.1 decoder

Hi All, I am fairly new to this so please forgive me, Currently I have an ASN.1 which I would like the ability to load this to my work server in order to enter a string of output decode and display the output. There are methods online as shown on ASN.1 JavaScript decoder however I have... (3 Replies)
Discussion started by: mutley2202
3 Replies

3. Solaris

ASN Binary to ASCII

Dears, I need help to convert the binary file into ASCII format. Actually we have CDRs which is generated by telecom switch at this is in ASN1 format or binary format, I need to convert those binary formatted file into ASCII format using Perl, or shell scripting. Is there any way to solve... (3 Replies)
Discussion started by: PRINCESS_RORO
3 Replies

4. UNIX for Advanced & Expert Users

Python Programming for ASN.1 file

Hi. Has anyone here got an experience doing conversion from asn1 format to a readable format so that it can be processed by Oracle? I want to load the data into a table. This is a CDR file. Attached is the pairing file. Please remove the .txt at the end. Someone said that it is possible... (1 Reply)
Discussion started by: aimy
1 Replies
Alzabo::Schema(3pm)					User Contributed Perl Documentation				       Alzabo::Schema(3pm)

NAME
Alzabo::Schema - Schema objects SYNOPSIS
use base qw(Alzabo::Schema); DESCRIPTION
This is the base class for schema objects.. METHODS
name Returns a string containing the name of the schema. table ($name) Returns an "Alzabo::Table" object representing the specified table. An "Alzabo::Exception::Params" exception is throws if the schema does not contain the table. tables (@optional_list) If no arguments are given, this method returns a list of all "Alzabo::Table" objects in the schema, or in a scalar context the number of such tables. If one or more arguments are given, returns a list of table objects with those names, in the same order given (or the number of such tables in a scalar context, but this isn't terribly useful). An "Alzabo::Exception::Params" exception is throws if the schema does not contain one or more of the specified tables. has_table ($name) Returns a boolean value indicating whether the table exists in the schema. begin_work Starts a transaction. Calls to this function may be nested and it will be handled properly. rollback Rollback a transaction. commit Finishes a transaction with a commit. If you make multiple calls to "begin_work()", make sure to call this method the same number of times. run_in_transaction ( sub { code... } ) This method takes a subroutine reference and wraps it in a transaction. It will preserve the context of the caller and returns whatever the wrapped code would have returned. driver Returns the "Alzabo::Driver" object for the schema. rules Returns the "Alzabo::RDBMSRules" object for the schema. sqlmaker Returns the "Alzabo::SQLMaker" object for the schema. AUTHOR
Dave Rolsky, <autarch@urth.org> perl v5.8.8 2007-12-23 Alzabo::Schema(3pm)
All times are GMT -4. The time now is 05:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy