Questions tagged [ase]

The Android Scripting Environment allows you to edit and execute scripts and interactive interpreters directly on an Android device. For Sybase Adaptive Server Enterprise, use [sybase-ase]

The Android Scripting Environment (ASE) allows you to edit and execute scripts and interactive interpreters directly on an Android device. ASE provides access to many of the same APIs used by Java Android applications, but with a simplified interface.

58 questions
2
votes
3 answers

Associate a Network Security Group (NSG) to subnet

I'm having some difficulties when creating a VNET/Subnet. I'm also making use of ASE and for that I can only use a Classic VNET. Azure offers two types of VNET. Depending on how you create it (via Azure Portal, xplat-cli, old portal, powershell)…
Cesar
  • 19
  • 1
  • 6
2
votes
2 answers

Terminating android ASE shell from within the script

I'm using android scripting environment with python (ASE), and I'd like to terminate the shell executing the script when the script terminates. Is there a good way to do this? I have tried executing on the last line: os.system( 'kill %d' %…
Omer
  • 21
  • 1
2
votes
1 answer

How to get a Device Specific UID using Python in ASE on Android?

I am working on am Android Scripting Environment (ASE) script in Python to replicate an iPhone app. I need a device UID of some sort. My thoughts where a salted MD5 hash of the MAC address or device phone number, but I can't figure out how to access…
creuzerm
  • 820
  • 7
  • 14
2
votes
1 answer

Unable to send null parameter to Sybase Stored Procedure using .Net ASE native ADO client

I'm having and error when I try to call a Sybase stored procedure provinding a null parameter. I wrote a sandbox (see code bellow) When I run the code, I get "Unsupported parameter type" exception. The only way the code works is by removing the null…
2
votes
1 answer

How can I interact with the android scripting environment from an android app?

I'd like to use python scripts as plugins for an app I'm developing. This seems to be possible by interacting with android-scripting-environment (ASE), as is done by Locale, but I haven't found any documentation about this. How you execute ASE…
Joakim Lundborg
  • 10,920
  • 6
  • 32
  • 39
1
vote
0 answers

.NET Sybase AseCommand pass Hex string and store in database

Currently we are executing stored procedure with hex string from .NET command.executequery("exec spname x092837x737") No single quote in string parameter. We want to change it to command.text =…
Harshal C
  • 7
  • 5
1
vote
0 answers

Combine two rows into one rows in Sybase ASE

I have a resultset as below: id fname lname 11 Tom Jerry 11 Kim Harry Output I expected as below: id fname lname 11 Tom,Kim Jerry,Harry Appreciate your help. thank you.
1
vote
0 answers

How to integrate web app in App service Environment v2 with Azure Redis cache?

I am working on Creating a AppService Environment v2 in a VNet. And want app services in ASE to access a Azure Redis Cache (Basic Tier)that is already in use(with public DNS & not in a VNet). I have checked for Service endpoints in VNet but can’t…
Sunny C
  • 11
  • 1
1
vote
1 answer

Azure Isolated App Service Environment fails to create with Terraform with "An error has occurred."

I am attempting to create an Isolated App Service Environment (ASE) in Azure using Terraform. I have succeeded once and have an ASE running. Attempts to create a second ASE in the same subscription, but within a separate resource group, fail. The…
1
vote
2 answers

'import ase' does not load submodule 'ase.io'

I experienced a problem using the 'import module' instead of the 'from module import ...' syntax. This clearly shows that my understanding of loading modules is not sufficient. As far as I find elsewhere, this difference is mainly a style issue, but…
Josja
  • 131
  • 7
1
vote
1 answer

Sybase own process with 'SELECT' command cannot be killed (own process)

I'm using Sybase ASE 15.0. I have a process displayed by sp_who by 'sa' user that it seems to be running an 'INSERT' statement 0 18 running sa sa hostname 0 master tempdb INSERT…
Nina
  • 13
  • 3
1
vote
3 answers

In Sybase ASE, sp_helptext shows suceeded but nothing else is displayed

I am using Sybase ASE for the first time, and assume I am missing some very basic things. sp_helptext 'dbname.procedure_name' returns 'dbname.procedure_name' succeeded. but nothing else. A misspelling returns error. How do I capture or display…
goo54321
  • 21
  • 4
1
vote
0 answers

AZURE - Cannot access to Webapp located in ASE

I have the following problem: I created an ASE (App Service Environment) in terms of having an isolated WebApp connected between some VPN. I created an internal VNET where that ASE is located. The problem is: when I create the WebApp, it has the…
idiaz01
  • 43
  • 1
  • 5
1
vote
2 answers

Powershell how to pipe an interactive command

I am connection to a database via an interactive SQL-Command-Line-Utility and when I am executing an SQL command, I want to pipe the output to another power shell cmdlet, for example out-gridview. Lets say for example I connect to a Sybase ASE…
dafrk
  • 25
  • 5
1
vote
0 answers

Can't search for arabic characters in Sybase ASE 16 univarchar field type

I have a table with two fields id and name. Name field store arabic names like مينا and محمد when i write: select * from tablename where name like '%مينا%' there is no output but i can see the table with arabic characters when write: select * from…