I am using Yii to create a web application that allows me to view, retrieve, add, and delete information from tables in a MySQL database I have already created. Is there a way to implement this web app so that I can add or delete tables from the data
How do I make system calls from my C program. For example, how do I call the following function? What headers would I have to include? asmlinkage long sys_exit(int error_code); You would normally call C library wrappers for the system calls (for exam
I'm just a PHP starter and now I want to learn JQUERY, on my learning process I practice on validating inputs usually I validate my inputs using a pure PHP code only and every time I validate the inputs the page reloads and now I want to improve in d
I've got an Application which consists of 2 parts at the moment A Viewer that receives data from a database using EF A Service that manipulates data from the database at runtime. The logic behind the scenes includes some projects such as repositories
In my Blackberry application, I have to change the screen to arabic when user changes his language to arabic from settings page. I am getting arabic string data from the database and displaying it on the screen. In simulator it is displaying correctl
Background We are migrating a legacy database that have the labels of fields internacionalized in the database. We still use the messages.properties for some static resouces like css classes (names). The table looks like: ITEMS ----------------------
I am creating an web page in which have a Dropdownlist. I have to retrieve data for the drop_down_list from the database. Is there any way to get data from the database to the html view my html code: <select name="drop down"><option val
how to create XML file from database using vb.net As i tried i just got only the root elements created and not any data's from the database and my code is: <% @Import Namespace="System" %> <% @Import Namespace="System.Data" %&
I'm using Dapper and trying to retrieve a short from the database and would like to do this without grabbing it from a collection. I've got the following code, which doesn't work because QueryAsync<short> returns IEnumerable<short>. short stat
hi how can I delete a row by entering a string and not the long id? how can I edit my sql database for this to accomplish this task? I want to delete the row not by long id but just like the insertRow(String name, int studentNumber, String favoriteco
In our system we have multi-threaded processing engine. During processing each thread calls methods to retrieve data from the database. We determined that performance is greatly improved if methods called from the same thread use the same DB session
I am writing a basic program to read values from database table and print in table. The table was populated by an ancient program. Some of the fields in the row are optional and when I try to read them as string, I get the following error: panic: sql
I'm new at PHP and try to display the data from database and also delete it this for view the data <?php require_once 'config.php'; $que="SELECT `Fname`, `Lname` FROM `students`"; $myRun= mysql_query($que); $numOfRows=mysql_num_rows($myRun);
I am trying to add a new helloworld system call to a new version of the Linux Ubuntu kernel. I have been looking through the web but I cannot find a consistent example to show me what files I will have to modify to enable a helloworld system call to