Questions tagged [ultralite]

Ultralite is an extra lightweight edition of SAP's SQL Anywhere DBMS.

For more information, see Wikipedia on SQL Anywhere and SAP's wiki for Ultralite, etc. A Google search for 'sap ultralite' will turn up more information.

9 questions
2
votes
2 answers

C++: Creating a local copy of an Object

I'm an objective-C developer that's struggling with C++ code. Below is the code I have in C++: ULConnection *conn; ...... //code that builds up the connection conn->GetLastError()->GetString(value, 255); I need to create a local copy (not…
user1107173
  • 10,334
  • 16
  • 72
  • 117
1
vote
0 answers

Xamarin & Sybase Ultralite

Xamarin give us the possibility to write portable apps in Android, IOs and also Windows phone. Sybase ultralite give us the possibiility to use his DB on all this os. Does anyone can help me on understand how to use Sybase Ultralite db on a Xamarin…
Alecs
  • 2,900
  • 1
  • 22
  • 25
1
vote
1 answer

How can I stop/kill an ultralite SELECT statement?

just wondering if it is possible to cancel or stop a select statement? I have an application with a sap ultralite database. Database connections and statements are handled within a singleton. I have a ViewController where I start a heavy…
longi
  • 11,104
  • 10
  • 55
  • 89
0
votes
1 answer

Aggregate results in SQLAnywhere 16 (For XML replacement)

I'm using Ultralite 16.0 and trying to aggregate multiple rows into one. I have a film table and a genre table, that have a many-to-many relationship through the film_genre table. I want a result like this: | mFilm | idGenre | | --------- |…
0
votes
1 answer

Xamarin Android binding results in interfaces and no classes

I am binding a 3rd party JAR file for my Xamarin Android project. It binds with no errors but quite a few warnings about "hiding" (CS0108) and "not hiding" (CS0109) accessible members. When I code in the Android project, the classes I expect aren't…
BESpring
  • 1
  • 1
0
votes
1 answer

SQLE_NOT_PUBLIC_ID Sybase mobilink error

I am working on an ios project that has a Sybase (ultralite) database that is synchronized with a Sybase Sql Anywhere 12 database using mobilink. Everything was properly, until i decided today to add some fields to the main database so that they…
Dany Balian
  • 608
  • 7
  • 16
0
votes
0 answers

Blank screen with multidex in android 4.0.3

I have an application which supports android version from 4.0.3 up to 6.0 and it has reached the total amount of allowed methods in application and it forced me enabling multidex feature. The application has support for swipe to dismiss feature and…
user2475117
  • 43
  • 1
  • 5
0
votes
1 answer

Syntax error on date sort

I am using Ultralite 12. I have a table with a date field called "Date." (I didn't name it.) I want to sort my results by this field. The query: SELECT * FROM ItemHistory where itemid = 'BC-2000-005' and customerid = '227B05' works and returns…
TychaBrahe
  • 55
  • 6
0
votes
1 answer

How to upgrade the Ultralite db with an existing database in android?

In my application , I am using ultralite db . I have made some changes in schema of the database now my app is in already market . When user upgrade the application with new version database is not updating. Please help me.