It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to store images in websql(sqllite).so please provide the procedure to store images in websql.
Sqlite has a data type called BLOB which is common in many DBMSes.
You can serialize the image as byte[] ans save it to column just like other data types.
Here is the same questoin How do i store and retrieve a blob from sqlite asked and answered.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible to select the data using indexes without using select statement...
No, you can not, you have to use it anyway. You can use stored procedure and call them from asp.net but stored procedure would have select statement to get data from tables.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to be able to read information about project lines in the Qt project which is building by MinGW.
How can I do it? Where I should include - /MAPINFO:LINES , to get output file with information about lines numbers?
Try to use __LINE__.
Example:
qDebug()<<__LINE__<<"hi";
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I create an one webpage in asp.net all the time i am facing the following pbm how to rectify it..
if(ds.Tables[0].Rows.Count > 0)
Maybe you need to check that ds.Tables[0] exists first
If you are constantly checking on your pages to see if that dataset has a table with rows, I would think you would want to make some helper class to check that your dataset is not null, and that whatever tables have actual rows. Also you might want to think about moving these to typed datasets.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how to reverse records in pl/sql
Use an ORDER BY clause with either ASCENDING or DESCENDING when selecting your records.
If this isn't what you want, you need to learn how to ask questions, as this is rather vague and open to interpretation.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Who can tell me what type of encryption this is?:
ntmQADJg9WWFHqQU/Bcef0YRnM0xB1
Looks like a base64 encoded string. However decoding that results in a binary, so beyond that can't say.